diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-26 08:06:19 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-01-26 08:06:19 -0500 |
| commit | 351d76d05ac4cd67866fa2005ee4501a2b14e6a7 (patch) | |
| tree | 8a6cce571bdb88792645fb78c487ab4888864d0e /home/browsers | |
| parent | modify firefox stuff (diff) | |
| download | dotfiles-nix-351d76d05ac4cd67866fa2005ee4501a2b14e6a7.tar.gz dotfiles-nix-351d76d05ac4cd67866fa2005ee4501a2b14e6a7.tar.bz2 dotfiles-nix-351d76d05ac4cd67866fa2005ee4501a2b14e6a7.zip | |
update commits and remove unused modules/inputs
Diffstat (limited to 'home/browsers')
| -rw-r--r-- | home/browsers/default.nix | 1 | ||||
| -rw-r--r-- | home/browsers/zen.nix | 32 |
2 files changed, 0 insertions, 33 deletions
diff --git a/home/browsers/default.nix b/home/browsers/default.nix index e4a65e1..5f1b9dc 100644 --- a/home/browsers/default.nix +++ b/home/browsers/default.nix @@ -1,6 +1,5 @@ _: { imports = [ ./firefox - ./zen.nix ]; } diff --git a/home/browsers/zen.nix b/home/browsers/zen.nix deleted file mode 100644 index 5ead8c7..0000000 --- a/home/browsers/zen.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ - config, - lib, - inputs, - ... -}: let - inherit (lib) mkIf; - cfg = config.browsers.zen; -in { - imports = [ - inputs.zen-browser.homeModules.default - ]; - - config = mkIf cfg.enable { - default.browser = lib.mkDefault "zen"; - - programs.zen-browser = { - enable = true; - - # import configuration - policies = import ./firefox/policies.nix; - - # create profile for me :3 - profiles.${config.user} = { - search = { - force = true; - default = "ddg"; - }; - }; - }; - }; -} |