38 lines
696 B
Nix
38 lines
696 B
Nix
{ breezex-cursor, pkgs, ... }:
|
|
{
|
|
stylix = {
|
|
enable = true;
|
|
image = ./wallpapers/nixos_inspector_tan.png;
|
|
polarity = "dark";
|
|
base16Scheme = ./neovim_default_scheme.yaml;
|
|
|
|
cursor = {
|
|
package = breezex-cursor;
|
|
name = "BreezeX-Light";
|
|
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;
|
|
};
|
|
|
|
sizes = {
|
|
desktop = 10;
|
|
popups = 10;
|
|
terminal = 10;
|
|
};
|
|
};
|
|
};
|
|
}
|