diff options
| author | Silas Schöffel <sils@sils.li> | 2024-04-07 22:03:00 +0200 |
|---|---|---|
| committer | Silas Schöffel <sils@sils.li> | 2024-04-07 22:03:00 +0200 |
| commit | 598b45923d361bb1ad9ff6c72a997d87a0218817 (patch) | |
| tree | 04d91b323bc6e7af3c951a9c5b1e1aaab177c7bf /modules/hm/sils/firefox.nix | |
| parent | firefox: add default profile (diff) | |
| download | nix-config-598b45923d361bb1ad9ff6c72a997d87a0218817.zip | |
firefox: refactor in separate dir
I have the feeling that this will grow quite complex.
Diffstat (limited to 'modules/hm/sils/firefox.nix')
| -rw-r--r-- | modules/hm/sils/firefox.nix | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/modules/hm/sils/firefox.nix b/modules/hm/sils/firefox.nix deleted file mode 100644 index 2ee593d..0000000 --- a/modules/hm/sils/firefox.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ - config, - lib, - ... -}: let - cfg = config.sils.home.firefox; -in { - options.sils.home.firefox = { - enable = lib.mkEnableOption "opinionated firefox configuration"; - }; - config = lib.mkIf cfg.enable { - programs.firefox = { - enable = true; - profiles = { - "default" = { - id = 0; - isDefault = true; - name = "default"; - search = { - default = "DuckDuckGo"; - privateDefault = "DuckDuckGo"; - force = true; - }; - }; - }; - }; - }; -} |
