11 lines
158 B
Nix
11 lines
158 B
Nix
{mainUser, ...}: {
|
|
imports = [./module.nix];
|
|
|
|
services.kapowarr = {
|
|
enable = true;
|
|
port = 5676;
|
|
|
|
user = mainUser;
|
|
group = "users";
|
|
};
|
|
}
|