Merge pull request #1196 from confusedalex/fix-nix

fix: adapt nix run command
This commit is contained in:
Owen Schwartz 2025-08-01 09:34:02 -07:00 committed by GitHub
commit 07b86521a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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}`
]
}
};