fondue: init

This commit is contained in:
LavaDesu 2021-09-20 18:10:28 +07:00
parent eee9b5df5b
commit 2b4cb226a1
Signed by: cilly
GPG key ID: 6500251E087653C9
5 changed files with 83 additions and 0 deletions

View 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" ];
};
}