diff options
Diffstat (limited to '')
| -rw-r--r-- | configuration.nix | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/configuration.nix b/configuration.nix index b2eb3e0..928e69d 100644 --- a/configuration.nix +++ b/configuration.nix @@ -74,7 +74,7 @@ in hostName = "smartfridge"; firewall = { enable = true; - allowedTCPPorts = [ 8080 3000 3001 ]; + allowedTCPPorts = [ 8080 8081 3000 3001 ]; allowedUDPPorts = [ 41641 ]; }; nameservers = [ "100.100.100.100" "8.8.8.8" "1.1.1.1" ]; @@ -100,7 +100,7 @@ in services.flatpak.enable = true; xdg.portal = { enable = true; - xdgOpenUsePortal = true; + xdgOpenUsePortal = false; extraPortals = (with pkgs; [ xdg-desktop-portal xdg-desktop-portal-gtk @@ -140,6 +140,15 @@ in noto-fonts-emoji ]; + # programs.firefox = { + # enable = true; + # preferences = { + # "browser.uidensity" = 1; + # "browser.compactmode.show" = true; + # "toolkit.legacyUserProfileCustomizations.stylesheets" = true; + # }; + # }; + nix.settings = { experimental-features = [ "nix-command" "flakes" ]; auto-optimise-store = true; |
