8 lines
111 B
Nix
8 lines
111 B
Nix
{ pkgs, ... }: {
|
|
# Enable sudo
|
|
security.sudo = {
|
|
enable = true;
|
|
wheelNeedsPassword = false;
|
|
};
|
|
}
|