From e0e17e4ff65d82086ada5ec4f05bd4c528e2c65d Mon Sep 17 00:00:00 2001 From: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Mon, 29 Dec 2025 19:13:06 +0100 Subject: [PATCH] update --- home-manager/wallpaper.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/home-manager/wallpaper.nix b/home-manager/wallpaper.nix index 1c765ca..0067769 100644 --- a/home-manager/wallpaper.nix +++ b/home-manager/wallpaper.nix @@ -5,16 +5,16 @@ let pkg = (import (pkgs.fetchFromGitHub { owner = "Noratrieb"; - repo = "wallpapersc"; - rev = "1943eec7c55a6ac9e9b143493d90f9870b31f23a"; - hash = "sha256-AI2tnRz/NVyn+LyljMSUbxanqHzpduV2ex3yvbX/GR0="; + repo = "colouncher"; + rev = "cd0c16497756b758ee184063e119f1bec2127f18"; + hash = "sha256-PcbYBojWMzb855u8+sk6hfu1hpHwInEcNBGk0/qqYtw="; })) { inherit pkgs; }; in { - systemd.user.services.wallpapersc = { + systemd.user.services.colouncher = { Unit = { - Description = "wallpaper daemon"; + Description = "Color-based program-launching wallpaper for Wayland"; PartOf = [ config.wayland.systemd.target ]; @@ -22,7 +22,7 @@ in ConditionEnvironment = "WAYLAND_DISPLAY"; }; Service = { - ExecStart = "${pkg}/bin/wallpapersc"; + ExecStart = pkgs.lib.getExe pkg; Restart = "on-failure"; };