diff options
| author | Akshay Nair <phenax5@gmail.com> | 2024-01-09 18:19:11 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2024-01-09 18:19:11 +0530 |
| commit | ed00ebd71d3910b3b8b88d18ccc71bae79d8508c (patch) | |
| tree | effba52afb27579c999395170913698a1871dc12 /configuration.nix | |
| parent | b2348ede8bef85e8ebf9ed49bab81defafd7a8a4 (diff) | |
| download | nixos-config-ed00ebd71d3910b3b8b88d18ccc71bae79d8508c.tar.gz nixos-config-ed00ebd71d3910b3b8b88d18ccc71bae79d8508c.zip | |
config sync
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; |
