mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-25 02:03:51 -08:00
14 lines
171 B
Nix
14 lines
171 B
Nix
|
{
|
||
|
security.sudo.enable = false;
|
||
|
|
||
|
security.doas = {
|
||
|
enable = true;
|
||
|
extraRules = [
|
||
|
{
|
||
|
keepEnv = true;
|
||
|
persist = true;
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
}
|