From 7cada7d4b5250f8f12391b61b77c4959f86a3b94 Mon Sep 17 00:00:00 2001 From: jackjohn7 <70782491+jackjohn7@users.noreply.github.com> Date: Sat, 28 Mar 2026 20:40:26 -0500 Subject: [PATCH] fix cursors and wallpapers --- modules/features/hyprland/hyprpaper.conf | 2 +- modules/features/layers/cursors.nix | 35 +++++++++++++----------- 2 files changed, 20 insertions(+), 17 deletions(-) diff --git a/modules/features/hyprland/hyprpaper.conf b/modules/features/hyprland/hyprpaper.conf index 32393c9..a854f66 100644 --- a/modules/features/hyprland/hyprpaper.conf +++ b/modules/features/hyprland/hyprpaper.conf @@ -1,6 +1,6 @@ wallpaper { monitor = eDP-1 - path = ~/Pictures/wallpapers/Augustine/Augustine-catppuccin-mocha.png + path = ~/Pictures/wallpapers/Augustine-catppuccin-mocha.png fit_mode = cover } diff --git a/modules/features/layers/cursors.nix b/modules/features/layers/cursors.nix index 50810f7..e77718a 100644 --- a/modules/features/layers/cursors.nix +++ b/modules/features/layers/cursors.nix @@ -8,22 +8,25 @@ ... }: { - hjem.users."${config.username}" = { - enable = true; - files = { - # GTK cursor settings - ".config/gtk-3.0/settings.ini".text = '' - [Settings] - gtk-cursor-theme-name=Bibata-Modern-Ice - gtk-cursor-theme-size=24 - ''; - # X11/Wayland cursor environment - ".config/environment.d/cursor.conf".text = '' - XCURSOR_THEME=Bibata-Modern-Ice - XCURSOR_SIZE=24 - HYPRCURSOR_THEME=Bibata-Modern-Ice - HYPRCURSOR_SIZE=24 - ''; + config = { + environment.systemPackages = with pkgs; [ bibata-cursors ]; + hjem.users."${config.username}" = { + enable = true; + files = { + # GTK cursor settings + ".config/gtk-3.0/settings.ini".text = '' + [Settings] + gtk-cursor-theme-name=Bibata-Modern-Ice + gtk-cursor-theme-size=24 + ''; + # X11/Wayland cursor environment + ".config/environment.d/cursor.conf".text = '' + XCURSOR_THEME=Bibata-Modern-Ice + XCURSOR_SIZE=24 + HYPRCURSOR_THEME=Bibata-Modern-Ice + HYPRCURSOR_SIZE=24 + ''; + }; }; }; };