snowflake/home/gtk/catppuccin-red.nix

23 lines
427 B
Nix
Raw Normal View History

2024-02-08 12:04:15 -05:00
{ pkgs, ... }:
{
2023-06-10 21:51:33 -04:00
home.pointerCursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 24;
gtk.enable = true;
x11.enable = true;
};
gtk = {
enable = true;
theme = {
2023-11-06 22:51:03 -05:00
name = "Catppuccin-Mocha-Standard-Red-Dark";
2023-06-10 21:51:33 -04:00
package = pkgs.catppuccin-gtk.override {
2024-02-08 12:04:15 -05:00
accents = [ "red" ];
2023-07-09 04:50:00 -04:00
size = "standard";
2023-06-10 21:51:33 -04:00
variant = "mocha";
};
};
};
}