stylix: initial disabled setting
Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
parent
4f0804770f
commit
8b19ff9470
2 changed files with 20 additions and 0 deletions
|
@ -20,6 +20,7 @@ with lib; {
|
|||
fonts.enable = true;
|
||||
gtk.enable = true;
|
||||
qt.enable = true;
|
||||
#// stylix.enable = true;
|
||||
xdg.enable = true;
|
||||
})
|
||||
|
||||
|
|
19
options/custom/settings/stylix.nix
Normal file
19
options/custom/settings/stylix.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue