From 08958c0a78f8dbc27cc2ee9cfaddce1e5a13ba9b Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Sun, 15 Sep 2024 21:52:21 -0500 Subject: [PATCH] Manage Firefox with home-manager I'm not exactly sure how to manage profiles; I wasn't able to get this to work so I just ended up managing profiles manually. --- oscar/configuration.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/oscar/configuration.nix b/oscar/configuration.nix index 66241ad..23d0fd6 100644 --- a/oscar/configuration.nix +++ b/oscar/configuration.nix @@ -114,7 +114,6 @@ users.users.chandler.extraGroups = [ "networkmanager" "wheel" "dialout" "cdrom" ]; home-manager.users.chandler = { pkgs, ... }: { home.packages = with pkgs; [ - firefox kate prismlauncher libreoffice-qt @@ -166,6 +165,18 @@ signing.key = null; # "let GnuPG decide what signing key to use depending on commit's author" }; + programs.firefox = { + enable = true; +# profiles = { +# default = { +# id = 0; +# name = "default"; +# isDefault = true; +# search.default = "DuckDuckGo"; +# }; +# }; + }; + home.stateVersion = "23.11"; };