nixconf/home-manager/stylix.nix
Gabriella Bere bfde0fdfef switched to kitty, added blink-cmp emojis
also updated flake and fixed kernel issue
also attempted to make calendar tooltip in waybar scrollable but it isnt
working yet
2025-09-06 23:45:37 +01:00

38 lines
784 B
Nix

{ pkgs, ... }:
{
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/heetch.yaml";
image = ./wallpaper.png;
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" ];
};
};
}