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; }; }; }