nixos/system/security.nix
2024-12-04 16:27:03 +01:00

9 lines
119 B
Nix

{ config, pkgs, ... }:
{
# Enable sudo
security.sudo = {
enable = true;
wheelNeedsPassword = false;
};
}