set up birbs website
This commit is contained in:
parent
75212dff9c
commit
56c3c4c479
8 changed files with 194 additions and 72 deletions
24
configs/containers/cube/farewellbird.nix
Normal file
24
configs/containers/cube/farewellbird.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ lib, pkgs, config, ... }: {
|
||||
|
||||
deployment = {
|
||||
targetHost = "10.10.0.5";
|
||||
targetPort = 22;
|
||||
targetUser = "root";
|
||||
tags = [ "cube" ];
|
||||
};
|
||||
networking = {
|
||||
hostName = "farewellbird";
|
||||
interfaces.eth0 = {
|
||||
ipAddress = "10.10.0.5";
|
||||
prefixLength = 32;
|
||||
};
|
||||
defaultGateway = {
|
||||
address = "10.10.0.254";
|
||||
interface = "eth0";
|
||||
};
|
||||
};
|
||||
imports = [
|
||||
../../container_config.nix
|
||||
../../services/farewellbird.nix
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue