This commit is contained in:
stubdesu 2024-01-15 16:09:39 +07:00
parent 9272749b6f
commit 0f75981120
15 changed files with 129 additions and 31 deletions

View file

@ -0,0 +1,12 @@
{ config, ... }: {
networking = {
useDHCP = true;
nameservers = [ "1.1.1.1" "8.8.8.8" ];
wireless.userControlled.enable = true;
extraHosts = ''
192.168.100.12 strawberry
192.168.100.15 caramel
'';
};
}