blob: bf18d3423e10b89eb27d0bb9e4fe93d652ad79fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{
lib,
config,
...
}: let
inherit (lib) mkEnableOption;
in {
imports = [
./firefox
];
options.browsers = {
firefox = mkEnableOption "Enable the firefox browser.";
};
}
|