1
1
Fork 0

stylix: initial disabled setting

Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
Myned 2024-12-26 00:25:24 -05:00
parent 4f0804770f
commit 8b19ff9470
Signed by: Myned
GPG key ID: C7224454F7881A34
2 changed files with 20 additions and 0 deletions

View file

@ -20,6 +20,7 @@ with lib; {
fonts.enable = true; fonts.enable = true;
gtk.enable = true; gtk.enable = true;
qt.enable = true; qt.enable = true;
#// stylix.enable = true;
xdg.enable = true; xdg.enable = true;
}) })

View file

@ -0,0 +1,19 @@
{
config,
lib,
...
}:
with lib; let
cfg = config.custom.settings.stylix;
in {
options.custom.settings.stylix = {
enable = mkOption {default = false;};
};
config = mkIf cfg.enable {
# https://stylix.danth.me/
stylix = {
enable = true;
};
};
}