nixos-config/modules/core/network.nix

9 lines
127 B
Nix
Raw Normal View History

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