restoring to latest 'valid' state

This commit is contained in:
Chris Kruining 2025-03-18 22:30:48 +01:00
parent a79dccf55a
commit 34874dd592
6 changed files with 9 additions and 43 deletions

View file

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