summaryrefslogtreecommitdiff
path: root/nix/modules/home/gtk.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2025-10-06 16:05:07 -0700
committerPreston Pan <ret2pop@gmail.com>2025-10-06 16:05:07 -0700
commit841c06b106ad501643c35f48f2ced1c2d6a78641 (patch)
tree76e32ab8f43ebd79bce73b9b06b03a0e56d8a3ce /nix/modules/home/gtk.nix
parent8a036cf21982210045685fe748afaf6be5aef042 (diff)
working version before flake update
Diffstat (limited to 'nix/modules/home/gtk.nix')
-rw-r--r--nix/modules/home/gtk.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/nix/modules/home/gtk.nix b/nix/modules/home/gtk.nix
new file mode 100644
index 0000000..4e85b9d
--- /dev/null
+++ b/nix/modules/home/gtk.nix
@@ -0,0 +1,8 @@
+{ lib, config, pkgs, ... }:
+{
+ gtk = {
+ theme = {
+ package = pkgs.catppuccin-gtk;
+ };
+ };
+}