infra/module/aspect/base/security.nix
2025-12-05 20:00:12 +07:00

14 lines
No EOL
228 B
Nix

{
den.aspects = {
base = {
nixos =
{ pkgs, ... }:
{
security = {
sudo-rs.enable = true;
sudo-rs.wheelNeedsPassword = false;
};
};
};
};
}