aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/firefox.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hm/sils/firefox.nix')
-rw-r--r--modules/hm/sils/firefox.nix28
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;
- };
- };
- };
- };
- };
-}