CASCADE/common/ssh.nix
2022-09-23 22:24:58 -05:00

8 lines
172 B
Nix

{ pkgs, config, ... }: {
config.programs.ssh.package = pkgs.openssh_gssapi;
config.services.openssh.enable = true;
config.networking.firewall.allowedTCPPorts = [ 22 ];
}