mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
31 lines
533 B
Nix
31 lines
533 B
Nix
# Replace sudo with doas
|
|
|
|
{ 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;
|
|
}];
|
|
};
|
|
};
|
|
|
|
home-manager.users.${config.user}.programs.fish.shellAliases = {
|
|
sudo = "doas";
|
|
};
|
|
}
|