infra/module/aspect/base/security.nix
2025-12-01 13:23:24 +07:00

14 lines
No EOL
228 B
Nix

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