diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index 1e80ad7..b5b04b4 100755 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -125,11 +125,11 @@ in "nix-command" "flakes" ]; + trusted-users = lib.mkDefault [ + "root" + user + ]; }; - trusted-users = lib.mkDefault [ - "root" - user - ]; }; services = { diff --git a/hosts/desktop/home.nix b/hosts/desktop/home.nix index 0c07de3..c42444e 100755 --- a/hosts/desktop/home.nix +++ b/hosts/desktop/home.nix @@ -47,6 +47,15 @@ in theme = "fishy"; }; }; + + librewolf = { + enable = true; + settings = { + "identity.fxaccounts.enabled" = true; # Enable Firefox Accounts + "privacy.clearOnShutdown.history" = true; # Disable clearing history on shutdown + "privacy.clearOnShutdown.downloads" = true; # Disable clearing downloads on shutdown + }; + }; }; programs.git = {