satnogs-nixos-deployment/modules/ssh.nix

9 lines
151 B
Nix

{ config, pkgs, ... }: {
# Enable the OpenSSH daemon.
services.openssh.enable = true;
services.openssh.extraConfig = "AcceptEnv LANG LC_*";
}