Files
nixos-config/modules/home/environment/stylix.nix

19 lines
469 B
Nix

{lib, config, pkgs, scheme, wallpaper, ... }: {
options = {
stylixHomeConfig.enable = lib.mkEnableOption "enables my stylix Home-Manager options";
};
config = lib.mkIf config.stylixHomeConfig.enable {
stylix = {
enable = true;
autoEnable = true;
targets = {
# fzf.enable = true;
# kitty.enable = true;
# vesktop.enable = true;
waybar.enable = false;
btop.enable = false;
};
};
};
}