snowflake/home/gtk/catppuccin-red.nix
notohh e1db1864df
All checks were successful
ci/woodpecker/push/checks Pipeline was successful
catppuccin-red: update
2023-07-09 04:50:00 -04:00

22 lines
423 B
Nix

{pkgs, ...}: {
home.pointerCursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 24;
gtk.enable = true;
x11.enable = true;
};
gtk = {
enable = true;
theme = {
name = "Catppuccin-Mocha-Standard-Red-dark";
package = pkgs.catppuccin-gtk.override {
accents = ["red"];
size = "standard";
variant = "mocha";
};
};
};
}