From ad56bf45c9014f5260baeab252ec548a773245d6 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Mon, 9 May 2022 03:36:09 +0200 Subject: [PATCH] home: x: use new options for cursor --- home/x/cursor.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home/x/cursor.nix b/home/x/cursor.nix index ae2c2ed..04378b0 100644 --- a/home/x/cursor.nix +++ b/home/x/cursor.nix @@ -15,12 +15,13 @@ in { options.my.home.x.cursor.enable = (mkEnableOption "X cursor") // {default = config.my.home.x.enable;}; config = mkIf cfg.enable { - xsession.pointerCursor = { + home.pointerCursor = { package = pkgs.capitaine-cursors; name = "capitaine-cursors"; # available sizes for capitaine-cursors are: # 24, 30, 36, 48, 60, 72 size = 30; + x11.enable = true; }; }; }