diff options
| author | aethrvmn <me@aethrvmn.gr> | 2025-11-29 10:40:56 +0000 |
|---|---|---|
| committer | aethrvmn <me@aethrvmn.gr> | 2025-11-29 10:40:56 +0000 |
| commit | b8aca137ba5ecc3346336fbb07c60227e7502f6e (patch) | |
| tree | 9d6ca6bbdf0de867d4cceab903f83b72ff66c464 | |
| parent | upgrade nixos (diff) | |
added config for doas
| -rw-r--r-- | modules/common/doas/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/common/doas/default.nix b/modules/common/doas/default.nix index 6402880..bc528d1 100644 --- a/modules/common/doas/default.nix +++ b/modules/common/doas/default.nix @@ -1,5 +1,13 @@ { security.doas = { enable = true; + + extraRules = [ + { + users = [ "aethrvmn" ]; + keepEnv = true; + persist = true; + } + ]; }; } |
