Skip to content

Commit 9fbf547

Browse files
committed
gitlabber/state: fix ssh files
1 parent e1b1999 commit 9fbf547

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

hosts/gitlabber/state.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
];
1616
files = [
1717
{ file = "/etc/machine-id"; inInitrd = true; how = "symlink"; configureParent = true; }
18-
{ file = "/etc/NIXOS"; inInitrd = true; how = "symlink"; }
19-
{ file = "/etc/ssh/ssh_host_ed25519_key"; mode = "0700"; inInitrd = true; }
20-
{ file = "/etc/ssh/ssh_host_ed25519_key.pub"; inInitrd = true; }
21-
{ file = "/etc/ssh/ssh_host_rsa_key"; mode = "0700"; inInitrd = true; }
22-
{ file = "/etc/ssh/ssh_host_rsa_key.pub"; inInitrd = true; }
18+
{ file = "/etc/NIXOS"; inInitrd = true; how = "symlink"; configureParent = true; }
19+
{ file = "/etc/ssh/ssh_host_ed25519_key"; mode = "0700"; inInitrd = true; configureParent = true; how = "symlink"; }
20+
{ file = "/etc/ssh/ssh_host_ed25519_key.pub"; inInitrd = true; configureParent = true; how = "symlink"; }
21+
{ file = "/etc/ssh/ssh_host_rsa_key"; mode = "0700"; inInitrd = true; configureParent = true; how = "symlink"; }
22+
{ file = "/etc/ssh/ssh_host_rsa_key.pub"; inInitrd = true; configureParent = true; how = "symlink"; }
2323
];
2424
};
2525
};

0 commit comments

Comments
 (0)