flakes/hosts/anemone/networking.nix
stubdesu 0f75981120 a
2024-01-15 16:09:39 +07:00

12 lines
239 B
Nix

{ 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
'';
};
}