10 lines
175 B
Nix
Raw Normal View History

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