14 lines
240 B
Nix
14 lines
240 B
Nix
{ lib, config, ... }:
|
|
{
|
|
|
|
config = {
|
|
services.openssh.enable = true;
|
|
security = {
|
|
sudo.execWheelOnly = true;
|
|
pam = {
|
|
sshAgentAuth.enable = true;
|
|
services.sudo.sshAgentAuth = true;
|
|
};
|
|
};
|
|
};
|
|
}
|