Skip to content

Commit

Permalink
gitlabber/state: fix ssh files
Browse files Browse the repository at this point in the history
  • Loading branch information
NyCodeGHG committed Jan 30, 2025
1 parent e1b1999 commit 9fbf547
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions hosts/gitlabber/state.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
];
files = [
{ file = "/etc/machine-id"; inInitrd = true; how = "symlink"; configureParent = true; }
{ file = "/etc/NIXOS"; inInitrd = true; how = "symlink"; }
{ file = "/etc/ssh/ssh_host_ed25519_key"; mode = "0700"; inInitrd = true; }
{ file = "/etc/ssh/ssh_host_ed25519_key.pub"; inInitrd = true; }
{ file = "/etc/ssh/ssh_host_rsa_key"; mode = "0700"; inInitrd = true; }
{ file = "/etc/ssh/ssh_host_rsa_key.pub"; inInitrd = true; }
{ file = "/etc/NIXOS"; inInitrd = true; how = "symlink"; configureParent = true; }
{ file = "/etc/ssh/ssh_host_ed25519_key"; mode = "0700"; inInitrd = true; configureParent = true; how = "symlink"; }
{ file = "/etc/ssh/ssh_host_ed25519_key.pub"; inInitrd = true; configureParent = true; how = "symlink"; }
{ file = "/etc/ssh/ssh_host_rsa_key"; mode = "0700"; inInitrd = true; configureParent = true; how = "symlink"; }
{ file = "/etc/ssh/ssh_host_rsa_key.pub"; inInitrd = true; configureParent = true; how = "symlink"; }
];
};
};
Expand Down

0 comments on commit 9fbf547

Please sign in to comment.