nix/stylix.nix

42 lines
738 B
Nix
Raw Permalink Normal View History

2024-07-29 12:55:08 +02:00
{
2024-09-18 12:03:23 +02:00
breezex-cursor,
pkgs,
...
}: {
stylix = {
enable = true;
image = ./wallpapers/nixos_inspector_tan.png;
polarity = "dark";
2025-05-24 00:46:24 +02:00
base16Scheme = "${pkgs.base16-schemes}/share/themes/ayu-dark.yaml";
cursor = {
package = breezex-cursor;
name = "BreezeX-Light";
2024-08-02 16:12:03 +02:00
size = 24;
};
fonts = {
monospace = {
name = "VictorMono Nerd Font";
2025-07-11 21:36:10 +02:00
package = pkgs.nerd-fonts.victor-mono;
};
sansSerif = {
name = "IBM Plex Sans";
package = pkgs.ibm-plex;
};
serif = {
name = "CMU Serif";
package = pkgs.cm_unicode;
};
2024-08-07 18:57:38 +02:00
sizes = {
desktop = 10;
popups = 10;
terminal = 10;
};
};
};
2024-07-29 12:55:08 +02:00
}