mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
8 lines
137 B
Nix
8 lines
137 B
Nix
|
|
{config, ...}: {
|
||
|
|
security.sudo.wheelNeedsPassword = false;
|
||
|
|
nix.settings.trusted-users = [
|
||
|
|
"root"
|
||
|
|
config.user.username
|
||
|
|
];
|
||
|
|
}
|