dotnix/apps/nogui/ssh.nix

9 lines
155 B
Nix
Raw Normal View History

{ config, ... }:
{
2023-06-28 20:48:01 +00:00
programs.ssh = {
enable = true;
includes = [ config.age.secrets.ssh-config.path ];
2023-06-28 20:48:01 +00:00
};
services.ssh-agent.enable = true;
2023-06-28 20:48:01 +00:00
}