sneeuwvlok/modules/home/options.nix
2025-03-18 22:18:46 +01:00

18 lines
284 B
Nix

{ lib, user, config, ... }:
{
options = let
inherit (lib) mkOption;
in
{
kaas = mkOption {
type = lib.types.bool;
default = true;
example = true;
description = "";
};
};
config = {
modules.${user}.themes.enable = config.kaas;
};
}