home: add firefox

This commit is contained in:
Bruno BELANYI 2021-04-05 11:55:42 +00:00
parent 4d04dd9b9b
commit e06edc8f47
3 changed files with 60 additions and 0 deletions

19
home/firefox/default.nix Normal file
View file

@ -0,0 +1,19 @@
{ 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
];
}