diff options
author | sefidel <contact@sefidel.net> | 2023-02-06 18:27:09 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-02-06 18:27:09 +0900 |
commit | 66a910c1b789a14d763c0d79827dfeba01ea8dd5 (patch) | |
tree | 6f671aa91f1c7cbaef4fdc39ee6436ba1306052d | |
parent | f02e3826b2a21f4d6d6e63eb5e00ab9f270a0f04 (diff) | |
download | nixrc-66a910c1b789a14d763c0d79827dfeba01ea8dd5.tar.gz nixrc-66a910c1b789a14d763c0d79827dfeba01ea8dd5.zip |
feat(nixos/cobalt): explicitly enable firewall
-rw-r--r-- | nixos/cobalt/configuration.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/cobalt/configuration.nix b/nixos/cobalt/configuration.nix index 85d7e6c..1850438 100644 --- a/nixos/cobalt/configuration.nix +++ b/nixos/cobalt/configuration.nix @@ -113,6 +113,8 @@ in networking.defaultGateway6 = { address = ipv6.gateway; interface = networkInterface; }; networking.nameservers = [ "8.8.8.8" ]; + networking.firewall.enable = true; + # Set your time zone. time.timeZone = "UTC"; |