feat: more dynamic theming

This commit is contained in:
2024-04-25 21:32:25 +02:00
parent 28b30353d8
commit 5c27567ca1
137 changed files with 180 additions and 8372 deletions

View File

@@ -0,0 +1,23 @@
{
config,
lib,
pkgs,
username,
...
}:
let
cfg = config.shell.components.dunst;
in
{
options.shell.components.dunst = {
enable = lib.mkEnableOption (lib.mdDoc "Enable a pre-configured dunst setup");
};
config = lib.mkIf cfg.enable {
home-manager.users.${username}.services.dunst = {
enable = true;
settings = { };
};
};
}