nix/stylix.nix

39 lines
696 B
Nix
Raw Normal View History

{ breezex-cursor, pkgs, ... }:
2024-07-29 12:55:08 +02:00
{
stylix = {
enable = true;
image = ./wallpapers/nixos_inspector_tan.png;
polarity = "dark";
base16Scheme = ./neovim_default_scheme.yaml;
cursor = {
package = breezex-cursor;
name = "BreezeX-Light";
2024-08-02 16:12:03 +02:00
size = 24;
};
fonts = {
monospace = {
name = "VictorMono Nerd Font";
package = pkgs.nerdfonts;
};
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
}