nixos-config/modules/ssh.nix

5 lines
81 B
Nix
Raw Normal View History

2022-02-06 23:01:27 +00:00
{ ... }: {
2022-01-25 00:31:56 +00:00
services.openssh.enable = true;
programs.ssh.startAgent = true;
2022-02-06 23:01:27 +00:00
}