nix-config/home/firefox/default.nix

21 lines
393 B
Nix
Raw Normal View History

2021-04-05 13:55:42 +02:00
{ 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
2021-04-05 15:22:53 +02:00
./tridactyl.nix
2021-04-05 13:55:42 +02:00
];
}