From 0f885b41db9053fc7b1792c16c508378f9f3392e Mon Sep 17 00:00:00 2001 From: notohh Date: Sat, 10 Jun 2023 21:51:33 -0400 Subject: [PATCH] gtk: init catppuccin red theme --- home/gtk/catppuccin-red.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 home/gtk/catppuccin-red.nix diff --git a/home/gtk/catppuccin-red.nix b/home/gtk/catppuccin-red.nix new file mode 100644 index 0000000..ff51bfc --- /dev/null +++ b/home/gtk/catppuccin-red.nix @@ -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"; + }; + }; + }; +}