nixconf/home-manager/stylix.nix
Gabriella Bere e7ec341b81 move prismlauncher to home.packages
current version of java is broken so i am moving it to home.packages as
well as swapping it out to stable.prismlauncher
2025-04-17 13:34:43 +01:00

17 lines
527 B
Nix

{pkgs, ...}: {
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/heetch.yaml";
image = ./wallpaper.png;
cursor = {
package = pkgs.mint-cursor-themes;
name = "Bibata-Modern-Classic";
size = 24;
};
polarity = "dark";
targets = {
firefox.profileNames = ["blue"];
nvf.enable = false; # This was added after I had nvf already set up to pull theme from stylix, and the two don't work together so I am leaving this disabled for now
};
};
}