Add Incus to the server services, put Kitty on its own router for an extra public IP
This commit is contained in:
parent
9c2bf2a898
commit
95140d5a0e
7 changed files with 45 additions and 6 deletions
14
hosts/kitty/network/default.nix
Normal file
14
hosts/kitty/network/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ ... }:
|
||||
{
|
||||
networking = {
|
||||
interfaces."eno1".ipv4.addresses = [{
|
||||
address = "11.2.0.1";
|
||||
prefixLength = 8;
|
||||
}];
|
||||
defaultGateway = {
|
||||
address = "11.1.0.1";
|
||||
interface = "eno1";
|
||||
};
|
||||
hostId = "8745e22e";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue