mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
29 lines
493 B
Nix
29 lines
493 B
Nix
|
# Replace sudo with doas
|
||
|
|
||
|
{ config, ... }: {
|
||
|
|
||
|
config = {
|
||
|
security = {
|
||
|
|
||
|
# Remove sudo
|
||
|
sudo.enable = false;
|
||
|
|
||
|
# Add doas
|
||
|
doas = {
|
||
|
enable = true;
|
||
|
|
||
|
# No password required
|
||
|
wheelNeedsPassword = false;
|
||
|
|
||
|
# Pass environment variables from user to root
|
||
|
# Also requires removing password here
|
||
|
extraRules = [{
|
||
|
groups = [ "wheel" ];
|
||
|
noPass = true;
|
||
|
keepEnv = true;
|
||
|
}];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|