Nixos-Configuration/modules/nixos/common/ssh.nix
Jermeiah S 906179fbed
file location adjustments
disko may not be required here depending on the fact we are leveraging
lxc containers
2025-06-14 06:01:03 -04:00

10 lines
186 B
Nix

_: {
services.openssh.enable = true;
security = {
sudo.execWheelOnly = true;
pam = {
sshAgentAuth.enable = true;
services.sudo.sshAgentAuth = true;
};
};
}