From e91e516e1a2b0b89f5249d830f2387bc8321c8f9 Mon Sep 17 00:00:00 2001 From: 514fpv Date: Sat, 27 Jul 2024 23:05:13 +0800 Subject: [PATCH] fix(koumakyou): set cursor theme --- spec/koumakyou/jovian.nix | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/spec/koumakyou/jovian.nix b/spec/koumakyou/jovian.nix index a5754ee1..f06d43f7 100644 --- a/spec/koumakyou/jovian.nix +++ b/spec/koumakyou/jovian.nix @@ -32,16 +32,23 @@ }; }; - home-manager.users.app.home.packages = with pkgs; [ - (pkgs.kodi-wayland.passthru.withPackages (kodiPkgs: with kodiPkgs; [ - joystick # keymap steam-controller - #controller-topology-project - libretro libretro-2048 - libretro-fuse libretro-genplus libretro-mgba - libretro-nestopia libretro-snes9x - jellycon - ])) - ]; + home-manager.users.app = { + home.packages = with pkgs; [ + (pkgs.kodi-wayland.passthru.withPackages (kodiPkgs: with kodiPkgs; [ + joystick # keymap steam-controller + #controller-topology-project + libretro libretro-2048 + libretro-fuse libretro-genplus libretro-mgba + libretro-nestopia libretro-snes9x + jellycon + ])) + ]; + + home.pointerCursor = { + package = pkgs.steamdeck-hw-theme; + name = "steam"; + }; + }; services.handheld-daemon = { enable = true;