summaryrefslogtreecommitdiff
path: root/modules/browsers/zen.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/browsers/zen.nix')
-rw-r--r--modules/browsers/zen.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/modules/browsers/zen.nix b/modules/browsers/zen.nix
deleted file mode 100644
index e57625f..0000000
--- a/modules/browsers/zen.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- config,
- lib,
- inputs,
- ...
-}: let
- inherit (lib) mkIf;
- cfg = config.browsers;
-in {
- config = mkIf cfg.zen {
- default.browser = lib.mkDefault "zen";
-
- home-manager.users.${config.user} = {
- imports = [
- inputs.zen-browser.homeModules.default
- ];
-
- 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";
- };
- };
- };
- };
- };
-}