From 0a625ad6a95db3f7a28e8fa037cce775237fe28a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Geoffrey=20=E2=80=9CFrogeye=E2=80=9D=20Preud=27homme?= Date: Fri, 20 Jun 2025 13:22:54 +0200 Subject: [PATCH] Fix rssVideos service --- curacao/rssVideos.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/curacao/rssVideos.nix b/curacao/rssVideos.nix index bb4dd43..ba709e9 100644 --- a/curacao/rssVideos.nix +++ b/curacao/rssVideos.nix @@ -1,4 +1,10 @@ -{ ... }: +{ + config, + ... +}: +let + hostConfig = config; +in { config.home-manager.users.geoffrey = { @@ -15,6 +21,9 @@ ExecStart = lib.getExe ( pkgs.writeShellApplication { name = "rss_videos_download"; + runtimeInputs = with pkgs; [ + hostConfig.nix.package + ]; text = '' ${config.home.homeDirectory}/.config/dotfiles/hm/scripts/rssVideos download '';