nixos/nebula: Fix typo, chown -> chmod

This commit is contained in:
r-vdp 2024-10-10 09:03:29 +02:00
parent 9f1d2e97af
commit 89abe3c610
No known key found for this signature in database

View File

@ -136,9 +136,9 @@ in
${name}.start()
${name}.succeed(
"mkdir -p /root/.ssh",
"chown 700 /root/.ssh",
"chmod 700 /root/.ssh",
"cat '${snakeOilPrivateKey}' > /root/.ssh/id_snakeoil",
"chown 600 /root/.ssh/id_snakeoil",
"chmod 600 /root/.ssh/id_snakeoil",
"mkdir -p /root"
)
'';