nixos-config/modules/core/network.nix
2023-11-05 17:56:55 +01:00

9 lines
127 B
Nix
Executable file

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