nixconf/home-manager/stylix.nix
Gabriella Bere 38a62718ce configuring niri
got a new wallpaper so transparent windows look good
2025-10-12 13:19:23 +01:00

38 lines
784 B
Nix

{ pkgs, ... }:
{
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/heetch.yaml";
image = ./wallpaper.jpg;
fonts = {
serif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Serif";
};
sansSerif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans";
};
monospace = {
package = pkgs.nerd-fonts.hack;
name = "Hack Nerd Font";
};
emoji = {
package = pkgs.noto-fonts-color-emoji;
name = "Noto Color Emoji";
};
};
cursor = {
package = pkgs.mint-cursor-themes;
name = "Bibata-Modern-Classic";
size = 24;
};
polarity = "dark";
targets = {
librewolf.profileNames = [ "blue" ];
};
};
}