nix-config/home/firefox/default.nix

30 lines
586 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;
};
};
ff2mpv = {
enable = mkOption {
type = types.bool;
description = "ff2mpv configuration";
example = false;
default = config.my.home.mpv.enable;
};
};
2021-04-05 13:55:42 +02:00
};
imports = [
./firefox
./tridactyl
2021-04-05 13:55:42 +02:00
];
}