1
0
Fork 0
puter/common/sudo.nix

11 lines
165 B
Nix
Raw Normal View History

2024-02-04 21:51:11 +01:00
{
security.sudo = {
enable = true;
execWheelOnly = true;
wheelNeedsPassword = true;
2025-05-18 01:08:10 +02:00
extraConfig = ''
Defaults lecture="never"
'';
2024-02-04 21:51:11 +01:00
};
}