20 lines
373 B
Nix
20 lines
373 B
Nix
|
{ config, lib, ... }:
|
||
|
{
|
||
|
options.my.home.firefox = with lib; {
|
||
|
enable = mkEnableOption "firefox configuration";
|
||
|
|
||
|
tridactyl = {
|
||
|
enable = mkOption {
|
||
|
type = types.bool;
|
||
|
description = "tridactyl configuration";
|
||
|
example = false;
|
||
|
default = config.my.home.firefox.enable;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
imports = [
|
||
|
./firefox.nix
|
||
|
];
|
||
|
}
|