From f92c30f6ed9478cc27da8e2dba757f60171584fd Mon Sep 17 00:00:00 2001 From: mjallen18 Date: Mon, 3 Mar 2025 16:32:39 -0600 Subject: [PATCH] fix --- hosts/desktop/configuration.nix | 8 ++++---- hosts/desktop/home.nix | 9 +++++++++ 2 files changed, 13 insertions(+), 4 deletions(-) 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 = {