fondue: init
This commit is contained in:
parent
eee9b5df5b
commit
2b4cb226a1
5 changed files with 83 additions and 0 deletions
13
hosts/fondue/networking.nix
Normal file
13
hosts/fondue/networking.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ config, ... }: {
|
||||
networking = {
|
||||
useDHCP = false;
|
||||
interfaces.enp2s1.useDHCP = false;
|
||||
|
||||
interfaces.enp2s1.ipv4.addresses = [{
|
||||
address = "192.168.100.101";
|
||||
prefixLength = 24;
|
||||
}];
|
||||
defaultGateway = "192.168.100.1";
|
||||
nameservers = [ "8.8.8.8" ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue