summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules/hm/sils/firefox.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/hm/sils/firefox.nix b/modules/hm/sils/firefox.nix
index 790b341..2ee593d 100644
--- a/modules/hm/sils/firefox.nix
+++ b/modules/hm/sils/firefox.nix
@@ -11,6 +11,18 @@ in {
config = lib.mkIf cfg.enable {
programs.firefox = {
enable = true;
+ profiles = {
+ "default" = {
+ id = 0;
+ isDefault = true;
+ name = "default";
+ search = {
+ default = "DuckDuckGo";
+ privateDefault = "DuckDuckGo";
+ force = true;
+ };
+ };
+ };
};
};
}