feat: sudoers for homebridge

This commit is contained in:
s-prechtl 2025-12-02 18:10:56 +01:00
parent dd3763dd75
commit d79689fd55
2 changed files with 20 additions and 4 deletions

View file

@ -15,4 +15,20 @@
tls internal
'';
};
security.sudo = {
enable = true;
extraRules = [
{
users = [ "homebridge" ];
commands = [
{
command = "ALL";
options = [ "NOPASSWD" ];
}
];
}
];
};
}