dotfiles/nixos/system/stylix.nix
2025-07-18 14:29:02 +02:00

30 lines
582 B
Nix

{pkgs, ...}: {
stylix = {
enable = true;
image = ./../../src/wallpapers/wpmaterial.png;
base16Scheme = ./../../src/themes/campfire-night.yaml;
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;
};
};
};
}