nixos-config/modules/core/network.nix
2023-11-05 11:40:44 +01:00

8 lines
126 B
Nix
Executable file

{ ... }: {
networking = {
hostName = "nixos";
networkmanager.enable = true;
nameservers = [ "1.1.1.1" ];
};
}