hah, fixed manwe only to break orome
This commit is contained in:
parent
af58cfb4ab
commit
1172e2bd68
15 changed files with 133 additions and 105 deletions
18
modules/home/options.nix
Normal file
18
modules/home/options.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ lib, user, config, ... }:
|
||||
{
|
||||
options = let
|
||||
inherit (lib) mkOption;
|
||||
in
|
||||
{
|
||||
kaas = mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
example = true;
|
||||
description = "";
|
||||
};
|
||||
};
|
||||
|
||||
config = {
|
||||
modules.${user}.themes.enable = config.kaas;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue