summaryrefslogtreecommitdiff
path: root/modules/browsers/default.nix
blob: 29049f4a0d6d02939a059ad3b626b79f020ca1ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  lib,
  config,
  ...
}: let
  inherit (lib) mkEnableOption;
in {
  imports = [
    ./firefox
    ./zen.nix
  ];

  options.browsers = {
    firefox = mkEnableOption "Enable the firefox browser.";
    zen = mkEnableOption "Enable the zen browser.";
  };
}