1
1
Fork 0
nixos/options/custom/settings/stylix.nix
Myned 8b19ff9470
stylix: initial disabled setting
Signed-off-by: Myned <dev@bjork.tech>
2024-12-26 00:25:24 -05:00

19 lines
281 B
Nix

{
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;
};
};
}