nix/modules/stylix/default.nix

40 lines
772 B
Nix
Raw Normal View History

2024-07-05 17:42:57 +02:00
{ pkgs, ... }:
{
2024-07-05 19:26:11 +02:00
stylix = {
enable = true;
base16Scheme = {
2024-07-05 17:42:57 +02:00
base00 = "282828";
base01 = "3c3836";
base02 = "504945";
base03 = "665c54";
base04 = "bdae93";
base05 = "d5c4a1";
base06 = "ebdbb2";
base07 = "fbf1c7";
2024-07-05 19:26:11 +02:00
base08 = "cc241d";
2024-07-05 17:42:57 +02:00
base09 = "fe8019";
2024-07-05 19:26:11 +02:00
base0A = "d78821";
base0B = "98971a";
base0C = "689d6a";
base0D = "458588";
base0E = "b16286";
2024-07-05 17:42:57 +02:00
base0F = "d65d0e";
};
2024-07-14 22:03:17 +02:00
opacity.terminal = 0.8;
2024-07-05 19:26:11 +02:00
image = ./wallpaper.png;
targets.chromium.enable = false;
cursor.name = "Bibata-Modern-Ice";
cursor.package = pkgs.bibata-cursors;
cursor.size = 24;
2024-07-08 20:53:46 +02:00
fonts = {
sizes = {
applications = 12;
terminal = 14;
desktop = 12;
popups = 12;
};
};
2024-07-05 19:26:11 +02:00
};
2024-07-05 17:42:57 +02:00
}