diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-07-30 19:08:15 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-07-30 19:08:15 +0530 |
commit | 155ea4e83a1491064b4359f1dbc0aff5838be962 (patch) | |
tree | 99745ff1035cee5e0775bc9814253fec6507df77 | |
parent | 2e2731380c81a020f7bad594f475a6b4da4465f1 (diff) |
server: dont ask wheel for password
-rw-r--r-- | os/server/configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/server/configuration.nix b/os/server/configuration.nix index d1bea1a..f8563b4 100644 --- a/os/server/configuration.nix +++ b/os/server/configuration.nix @@ -3,7 +3,7 @@ imports = [ ../common/configuration.nix ]; networking.hostName = lib.mkOptionDefault "server"; - sudo.wheelNeedsPassword = false; + security.sudo.wheelNeedsPassword = false; services.openssh = { enable = true; |