1
1
Fork 0
nixos/options/custom/settings/stylix.nix

20 lines
281 B
Nix
Raw Normal View History

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