1
Fork 0
satellite/home/features/cli/ssh.nix
2024-01-31 20:26:11 +01:00

9 lines
273 B
Nix

{
programs.ssh.enable = true;
satellite.persistence.at.state.apps.ssh.directories = [ ".ssh" ];
# Makes it easy to copy ssh keys at install time without messing up permissions
systemd.user.tmpfiles.rules = [ "d /persist/state/home/adrielus/ssh/.ssh/etc/ssh" ];
}