NixOS/system/modules/sudo.nix

14 lines
250 B
Nix
Raw Permalink Normal View History

2024-06-12 09:54:11 +07:00
{ config, lib, ... }:
let
cfg = config.profile.security.sudo-rs;
in
{
config = lib.mkIf cfg.enable {
security.sudo.enable = false;
security.sudo-rs = {
enable = true;
wheelNeedsPassword = cfg.wheelNeedsPassword;
};
};
}