fix: add nix as a runtime input to registration script
All checks were successful
/ check (pull_request) Successful in 2m15s
All checks were successful
/ check (pull_request) Successful in 2m15s
This commit is contained in:
parent
59b281f984
commit
f299ec50f6
1 changed files with 8 additions and 2 deletions
|
@ -41,10 +41,16 @@
|
|||
|
||||
systemd = {
|
||||
services.register-thing = {
|
||||
serviceConfig = {
|
||||
serviceConfig = let
|
||||
script = pkgs.writeShellApplication {
|
||||
name = "run-thing";
|
||||
runtimeInputs = with pkgs; [nix];
|
||||
text = "/home/maintainer/register-thing/thing";
|
||||
};
|
||||
in {
|
||||
Type = "oneshot";
|
||||
User = "maintainer";
|
||||
ExecStart = "/home/maintainer/register-thing/thing";
|
||||
ExecStart = "${script}/bin/run-thing";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue