initial setup
This commit is contained in:
commit
b27835f9b7
26 changed files with 964 additions and 0 deletions
12
fili/networking.nix
Normal file
12
fili/networking.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
_: {
|
||||
networking.useDHCP = false;
|
||||
networking.interfaces.ens18.ipv4.addresses = [
|
||||
{
|
||||
address = "192.168.178.59";
|
||||
prefixLength = 24;
|
||||
}
|
||||
];
|
||||
networking.defaultGateway = "192.168.178.1";
|
||||
networking.nameservers = [ "8.8.8.8" ];
|
||||
networking.networkmanager.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue