diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-10-06 16:56:26 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-10-06 16:59:11 +0200 |
commit | e1820729d835f850a49507d988e1af8ab9574195 (patch) | |
tree | ab67b6135d279543fde9ab664e195b3775e93068 | |
parent | Update (diff) | |
download | nixos-config-e1820729d835f850a49507d988e1af8ab9574195.tar.gz nixos-config-e1820729d835f850a49507d988e1af8ab9574195.tar.bz2 nixos-config-e1820729d835f850a49507d988e1af8ab9574195.zip |
Hosts: Explicitly enable some networking 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 ]; |