diff options
author | Soispha <soispha@vhack.eu> | 2023-08-29 00:20:08 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-29 00:20:08 +0200 |
commit | 511a5233f6275cee0e3d5a8f767822208b07185b (patch) | |
tree | 5ac94946fc786d8da25dc14ac39f46865aef6895 | |
parent | Fix(sys/font): Add multiple changes (diff) | |
download | nixos-config-511a5233f6275cee0e3d5a8f767822208b07185b.tar.gz nixos-config-511a5233f6275cee0e3d5a8f767822208b07185b.zip |
Feat(hm/conf/firefox): Add a `clean` profile, without confi
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/firefox/default.nix | 33 |
1 files changed, 20 insertions, 13 deletions
diff --git a/hm/soispha/conf/firefox/default.nix b/hm/soispha/conf/firefox/default.nix index 1040ed0b..90347de9 100644 --- a/hm/soispha/conf/firefox/default.nix +++ b/hm/soispha/conf/firefox/default.nix @@ -49,23 +49,30 @@ in { enableTridactylNative = true; }; }; - profiles."default" = { - inherit extensions; - isDefault = true; - id = 0; - name = "default"; + profiles = { + "default" = { + inherit extensions; + isDefault = true; + id = 0; + name = "default"; - inherit userChrome; + inherit userChrome; - search = { - default = "Brave Search"; - force = true; + search = { + default = "Brave Search"; + force = true; - inherit engines; - }; + inherit engines; + }; - bookmarks = []; - extraConfig = builtins.readFile "${user_js_nix}/user.js"; + bookmarks = []; + extraConfig = builtins.readFile "${user_js_nix}/user.js"; + }; + "clean" = { + isDefault = false; + id = 1; + name = "clean"; + }; }; }; } |