CASCADE/common/ssh.nix

8 lines
172 B
Nix
Raw Normal View History

2022-09-24 03:24:58 +00:00
{ pkgs, config, ... }: {
config.programs.ssh.package = pkgs.openssh_gssapi;
config.services.openssh.enable = true;
config.networking.firewall.allowedTCPPorts = [ 22 ];
}