nixos-config/modules/core/network.nix

8 lines
126 B
Nix
Raw Normal View History

2023-11-05 11:40:44 +01:00
{ ... }: {
networking = {
hostName = "nixos";
networkmanager.enable = true;
nameservers = [ "1.1.1.1" ];
};
}