33 lines
651 B
Nix
33 lines
651 B
Nix
{pkgs, ...}: {
|
|
stylix = {
|
|
enable = true;
|
|
|
|
# Point Stylix to your new scheme
|
|
base16Scheme = ../../src/themes/moss.yaml;
|
|
|
|
# keep the wallpaper if you still want it
|
|
image = ../../src/wallpapers/dark-cat.png;
|
|
polarity = "dark";
|
|
autoEnable = true;
|
|
|
|
cursor = {
|
|
package = pkgs.bibata-cursors;
|
|
name = "Bibata-Modern-Ice";
|
|
size = 24;
|
|
};
|
|
|
|
fonts = {
|
|
sizes = {
|
|
desktop = 8;
|
|
applications = 10;
|
|
popups = 10;
|
|
terminal = 12;
|
|
};
|
|
monospace = {
|
|
name = "JetBrainsMono Nerd Font";
|
|
package = pkgs.nerd-fonts.jetbrains-mono;
|
|
};
|
|
};
|
|
};
|
|
}
|