nix/modules/stylix/default.nix

42 lines
876 B
Nix
Raw Normal View History

2024-08-21 09:02:49 +02:00
{pkgs, ...}: {
2024-07-05 19:26:11 +02:00
stylix = {
2024-07-14 22:14:30 +02:00
enable = true;
2024-08-21 09:02:49 +02:00
2024-08-08 16:41:51 +02:00
base16Scheme = {
base00 = "282828"; # ----
base01 = "3c3836"; # ---
base02 = "504945"; # --
base03 = "665c54"; # -
base04 = "bdae93"; # +
base05 = "d5c4a1"; # ++
base06 = "ebdbb2"; # +++
base07 = "fbf1c7"; # ++++
base08 = "cc241d"; # red
base09 = "fe0819"; # orange
base0A = "d79921"; # yellow
base0B = "98971a"; # green
base0C = "689d6a"; # aqua/cyan
base0D = "458588"; # blue
base0E = "b16286"; # purple
base0F = "a89984"; # brown
};
2024-08-21 09:02:49 +02:00
image = ./wallpaper.png;
2024-07-14 22:14:30 +02:00
2024-08-21 09:02:49 +02:00
cursor = {
2024-07-14 22:22:13 +02:00
name = "Bibata-Modern-Ice";
2024-08-21 09:02:49 +02:00
package = pkgs.bibata-cursors;
2024-07-14 22:22:13 +02:00
size = 24;
};
2024-08-21 09:02:49 +02:00
2024-07-08 20:53:46 +02:00
fonts = {
2024-08-21 09:02:49 +02:00
sizes = {
applications = 12;
2024-07-08 20:53:46 +02:00
terminal = 14;
desktop = 12;
popups = 12;
};
};
2024-07-05 19:26:11 +02:00
};
2024-07-05 17:42:57 +02:00
}