gtk: init catppuccin red theme

This commit is contained in:
notohh 2023-06-10 21:51:33 -04:00
parent a28f6f6ba7
commit 0f885b41db
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -0,0 +1,20 @@
{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"];
variant = "mocha";
};
};
};
}