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

11 lines
313 B
Nix
Raw Normal View History

2024-05-21 01:37:39 +02:00
{ config, ... }: {
2023-01-10 02:38:06 +01:00
programs.ssh.enable = true;
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
2024-05-21 01:37:39 +02:00
systemd.user.tmpfiles.rules = [
"d ${config.satellite.persistence.at.state.home}/ssh/.ssh/etc/ssh"
];
2023-01-10 02:38:06 +01:00
}