aboutsummaryrefslogtreecommitdiff
path: root/configuration.nix
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2024-01-09 18:19:11 +0530
committerAkshay Nair <phenax5@gmail.com>2024-01-09 18:19:11 +0530
commited00ebd71d3910b3b8b88d18ccc71bae79d8508c (patch)
treeeffba52afb27579c999395170913698a1871dc12 /configuration.nix
parentb2348ede8bef85e8ebf9ed49bab81defafd7a8a4 (diff)
downloadnixos-config-ed00ebd71d3910b3b8b88d18ccc71bae79d8508c.tar.gz
nixos-config-ed00ebd71d3910b3b8b88d18ccc71bae79d8508c.zip
config sync
Diffstat (limited to '')
-rw-r--r--configuration.nix13
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;