From 19c4f116708b6f20de2c2ccaba21530203b78af8 Mon Sep 17 00:00:00 2001 From: crurak Date: Sun, 6 Aug 2023 09:24:27 +0200 Subject: [PATCH] add xcursor.nix --- home/default.nix | 1 + home/gtk.nix | 2 +- home/xcursor.nix | 6 ++++++ 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 home/xcursor.nix diff --git a/home/default.nix b/home/default.nix index 0b709a0..4687c04 100644 --- a/home/default.nix +++ b/home/default.nix @@ -10,6 +10,7 @@ ./librewolf.nix ./neovim.nix ./waybar.nix + ./xcursor.nix ./xresources.nix ]; } diff --git a/home/gtk.nix b/home/gtk.nix index 9c395f8..245825d 100644 --- a/home/gtk.nix +++ b/home/gtk.nix @@ -2,7 +2,7 @@ gtk = { enable = true; cursorTheme = { - package = pkgs.phinger-cursor; + package = pkgs.phinger-cursors; name = "phinger-cursors"; }; gtk3.extraConfig = { diff --git a/home/xcursor.nix b/home/xcursor.nix new file mode 100644 index 0000000..658b700 --- /dev/null +++ b/home/xcursor.nix @@ -0,0 +1,6 @@ +{ + home.file.".icons/default/index.theme".text = /* ini */ '' + [icon theme] + Inherits=phinger-cursors + ''; +}