diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-05 19:40:58 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-05 19:40:58 -0700 |
commit | 4c5a61dc9021ed5fca7ffaf5000abaf66c1b4ea8 (patch) | |
tree | 83dac98a2d72cf06a8e1b33de11b685c5bc791b0 /modules/system/security | |
parent | refactor users to a module (diff) | |
download | world-4c5a61dc9021ed5fca7ffaf5000abaf66c1b4ea8.tar.gz |
refactor security to a module
Diffstat (limited to 'modules/system/security')
-rw-r--r-- | modules/system/security/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/system/security/default.nix b/modules/system/security/default.nix new file mode 100644 index 0000000..9550e8d --- /dev/null +++ b/modules/system/security/default.nix @@ -0,0 +1,5 @@ +{ ... }: + +{ + security.sudo.wheelNeedsPassword = false; +} |