diff options
Diffstat (limited to '')
-rw-r--r-- | hosts/configuration.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index c3fe6d1..a77d203 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -38,8 +38,12 @@ networking = { hostName = hostname; # Define your hostname. + enableIPv6 = true; extraHosts = builtins.readFile "${dotfiles}/hosts"; nameservers = [ "9.9.9.9" ]; + dhcpcd = { + enable = true; + }; firewall = { enable = true; allowedTCPPorts = [ 80 22 9090 ]; |