summaryrefslogtreecommitdiff
path: root/home/browsers/zen.nix
blob: 3797a6419e5e6d4d506f7b369dc03ccb38df96a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  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";
  #      };
  #    };
  #  };
  #};
}