From 42193b3ab20f637fd2b7023b33d1e59418910a58 Mon Sep 17 00:00:00 2001 From: Szymon P Date: Sun, 1 Mar 2026 21:25:36 +0100 Subject: [PATCH] cursor --- home.nix | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/home.nix b/home.nix index 17a1b8c..1d78c50 100644 --- a/home.nix +++ b/home.nix @@ -71,10 +71,20 @@ # === VARS === - home.sessionVariables = { - EDITOR = "nvim"; - VISUAL = "nvim"; - XDG_DATA_DIRS = "$HOME/.nix-profile/share/applications:$XDG_DATA_DIRS"; + home = { + sessionVariables = { + EDITOR = "nvim"; + VISUAL = "nvim"; + XDG_DATA_DIRS = "$HOME/.nix-profile/share/applications:$XDG_DATA_DIRS"; + }; + + pointerCursor = { + name = "phinger-cursors-light"; + package = pkgs.phinger-cursors; + size = 24; + gtk.enable = true; + x11.enable = true; + }; }; programs.home-manager.enable = true;