Files
rice-flakes/modules/hermes/sudo.nix
T
2026-05-29 20:54:22 -05:00

14 lines
221 B
Nix

{
security.sudo.extraRules = [
{
users = [ "poslop" ];
commands = [
{
command = "/run/current-system/sw/bin/docker";
options = [ "NOPASSWD" ];
}
];
}
];
}