woot. got a working build again

This commit is contained in:
Chris Kruining 2025-07-28 11:20:21 +02:00
parent 99fc92030f
commit 8c011c7e50
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
16 changed files with 73 additions and 89 deletions

View file

@ -1,23 +0,0 @@
{ config, namespace, ... }:
let
cfg = config.${namespace}.system.security.sudo;
in
{
options.${namespace}.system.security.sudo = {};
config = {
security = {
sudo = {
enable = false;
execWheelOnly = true;
};
sudo-rs = {
enable = true;
extraConfig = ''
Defaults env_keep += "EDITOR PATH DISPLAY"
'';
};
};
};
}