home: add firefox
This commit is contained in:
parent
4d04dd9b9b
commit
e06edc8f47
3 changed files with 60 additions and 0 deletions
19
home/firefox/default.nix
Normal file
19
home/firefox/default.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue