Changed settings for sudo

This commit is contained in:
2026-01-09 13:13:55 +01:00
parent 9b6e78f97b
commit f5bf317a9d
2 changed files with 8 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
{
imports = [
./keyboard.nix
./security.nix
] ++ (if (currentSystemDe != "none") then [
./sound.nix
./fonts.nix

View File

@@ -0,0 +1,7 @@
{ ... }:
{
security.sudo.extraConfig = ''
Defaults pwfeedback
Defaults timestamp_timeout=120
'';
}