fix: adapt nix run command

This commit is contained in:
confusedalex 2025-08-01 11:31:29 +02:00
parent 92e69f561f
commit 961008bbe1
No known key found for this signature in database
GPG key ID: 4F279B9B08BE3E11

View file

@ -291,10 +291,10 @@ WantedBy=default.target`
},
nixos: {
x86_64: [
`nix run 'nixpkgs#fosrl-newt' --id ${id} --secret ${secret} --endpoint ${endpoint}`
`nix run 'nixpkgs#fosrl-newt' -- --id ${id} --secret ${secret} --endpoint ${endpoint}`
],
aarch64: [
`nix run 'nixpkgs#fosrl-newt' --id ${id} --secret ${secret} --endpoint ${endpoint}`
`nix run 'nixpkgs#fosrl-newt' -- --id ${id} --secret ${secret} --endpoint ${endpoint}`
]
}
};