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

10 lines
299 B
Nix

{
programs.ssh.enable = true;
# TODO: age persistence
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" ];
}