This commit is contained in:
mtgmonkey
2025-10-18 17:43:00 +02:00
parent de2d369c82
commit 800dec235d
6 changed files with 1093 additions and 284 deletions

View File

@@ -1,22 +1,31 @@
{pkgs, ...}: {
{
pkgs,
config,
...
}: {
stylix = {
enable = true;
# rebecca has lavener bkg
# tube has dark gray bkg
# silk-light is light theme
base16Scheme = "${pkgs.base16-schemes}/share/themes/silk-light.yaml";
polarity = "light";
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-material-dark-hard.yaml";
polarity = "dark";
image = ./stylix/nix-wallpaper-gear.png;
fonts = {
monospace = {
package = pkgs.miracode;
name = "Miracode";
};
serif = config.stylix.fonts.sansSerif;
sizes = {
applications = 12;
terminal = 10;
};
};
cursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
size = 8;
package = pkgs.hackneyed;
name = "Hackneyed";
size = 16;
};
};
}