From 156615864b3e8028c6b19ff41b7eeb2cf9f23daf Mon Sep 17 00:00:00 2001 From: Richard Mauer Date: Mon, 30 Dec 2024 21:52:39 -0500 Subject: [PATCH] add pkgs. --- installer/installer.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/installer.nix b/installer/installer.nix index 451f94d..6f25c24 100644 --- a/installer/installer.nix +++ b/installer/installer.nix @@ -1,4 +1,4 @@ -{ pkgs, config, lib, installFiles, ... }: +{ pkgs, config, lib, ... }: { config = { systemd.services.custom-install = { @@ -16,7 +16,7 @@ # Your installation commands here if [ ! -f /etc/installation-completed ]; then # Run your installation steps - "${installFiles}/bin/install.sh" + "${pkgs.installFiles}/bin/install.sh" # Mark as completed touch /etc/installation-completed fi