nixos-config/modules/ssh.nix

5 lines
81 B
Nix
Raw Normal View History

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