aboutsummaryrefslogtreecommitdiffstats
path: root/hm
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-29 00:20:08 +0200
committerSoispha <soispha@vhack.eu>2023-08-29 00:20:08 +0200
commit511a5233f6275cee0e3d5a8f767822208b07185b (patch)
tree5ac94946fc786d8da25dc14ac39f46865aef6895 /hm
parentFix(sys/font): Add multiple changes (diff)
downloadnixos-config-511a5233f6275cee0e3d5a8f767822208b07185b.zip
Feat(hm/conf/firefox): Add a `clean` profile, without confi
Diffstat (limited to 'hm')
-rw-r--r--hm/soispha/conf/firefox/default.nix33
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";
+ };
};
};
}