1
Fork 0
satellite/home/features/cli/ssh.nix

10 lines
299 B
Nix
Raw Normal View History

2023-07-18 23:36:58 +02:00
{
2023-01-10 02:38:06 +01:00
programs.ssh.enable = true;
2024-01-31 20:03:00 +01:00
# TODO: age persistence
2023-11-04 20:51:56 +01:00
satellite.persistence.at.state.apps.ssh.directories = [ ".ssh" ];
2024-01-18 07:44:16 +01:00
# 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" ];
2023-01-10 02:38:06 +01:00
}