18 lines
285 B
Nix
18 lines
285 B
Nix
{ 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;
|
|
};
|
|
}
|