diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-12-30 11:35:14 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-12-30 11:35:14 +0100 |
commit | dce2c3c26a2ff9770bbba2a00471c03ab321c472 (patch) | |
tree | 91ce56182bab4dee87fd663ea70880446a15f7e7 /modules/doas/default.nix | |
parent | Font: Change font style pt 1000 (diff) | |
download | nixos-config-dce2c3c26a2ff9770bbba2a00471c03ab321c472.tar.gz nixos-config-dce2c3c26a2ff9770bbba2a00471c03ab321c472.tar.bz2 nixos-config-dce2c3c26a2ff9770bbba2a00471c03ab321c472.zip |
fmt
Diffstat (limited to 'modules/doas/default.nix')
-rw-r--r-- | modules/doas/default.nix | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/modules/doas/default.nix b/modules/doas/default.nix index 39cb03b..9abc038 100644 --- a/modules/doas/default.nix +++ b/modules/doas/default.nix @@ -1,15 +1,19 @@ -{ config, pkgs, ... }: - { + config, + pkgs, + ... +}: { security = { sudo.enable = false; doas = { enable = true; - extraRules = [{ - groups = [ "wheel" ]; - keepEnv = true; - persist = true; - }]; + extraRules = [ + { + groups = ["wheel"]; + keepEnv = true; + persist = true; + } + ]; }; }; } |