aboutsummaryrefslogtreecommitdiff
path: root/configuration.nix
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-12-05 23:00:42 +0530
committerAkshay Nair <phenax5@gmail.com>2025-12-14 22:06:38 +0530
commit07f13ef6e86d72c48ba760ba353e17d441881160 (patch)
tree63fc3ed1856920f3eaf682d5fa80a7eba3435945 /configuration.nix
parente8252676414aa387a337282e4af7c49d465d3936 (diff)
downloadnixos-config-07f13ef6e86d72c48ba760ba353e17d441881160.tar.gz
nixos-config-07f13ef6e86d72c48ba760ba353e17d441881160.zip
Cleanup
Diffstat (limited to 'configuration.nix')
-rw-r--r--configuration.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/configuration.nix b/configuration.nix
index 20299ec..e2e54a6 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -49,8 +49,8 @@
hostName = "smartfridge";
firewall = {
enable = true;
- allowedTCPPorts = [ 3000 3001 ];
- allowedUDPPorts = [ 41641 ];
+ allowedTCPPorts = [ 3000 3001 80 443 ];
+ allowedUDPPorts = [ 41641 80 443 ];
};
nameservers = [ "100.100.100.100" "1.1.1.1" "8.8.8.8" ];
search = [ "resolve.construction" ];
@@ -152,6 +152,11 @@
keep-outputs = true
keep-derivations = true
'';
+ # system.autoUpgrade = {
+ # enable = true;
+ # allowReboot = false;
+ # dates = "monthly";
+ # };
system.stateVersion = "20.09";
}