nix-config/home/firefox/default.nix
2021-05-08 17:14:13 +02:00

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
];
}