From 6940e1d8f9f688c46af226117815e2f857e176e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Wed, 26 Jul 2023 08:18:09 +0200 Subject: [PATCH] feat: set cursor theme --- configs/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/configs/default.nix b/configs/default.nix index d1ef041..8f2138d 100644 --- a/configs/default.nix +++ b/configs/default.nix @@ -61,6 +61,19 @@ in { }; }; } + { + environment.systemPackages = [ + pkgs.capitaine-cursors + ]; + + home-manager.users.me = { + home.pointerCursor = { + name = "capitaine-cursors-white"; + package = pkgs.capitaine-cursors; + size = 12; + }; + }; + } { users.mutableUsers = false;