1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/configs/sudo.nix

11 lines
148 B
Nix
Raw Permalink Normal View History

2019-04-19 15:02:05 +02:00
{
security.sudo = {
enable = true;
extraConfig = ''
Defaults pwfeedback
'';
};
users.users.me.extraGroups = [ "wheel" ];
}