10 lines
174 B
Nix
Raw Normal View History

2023-11-04 02:28:27 +01:00
{ config, ... }: {
programs.ssh = {
extraConfig = ''
IdentityFile ${
2024-04-14 07:57:07 +02:00
config.sops.secrets."${config.syscfg.hostname}_ssh_priv".path
2023-11-04 02:28:27 +01:00
}
'';
};
}