13 lines
208 B
Nix
13 lines
208 B
Nix
{ pkgs, ... }:
|
|
{
|
|
users.groups.multimedia = { };
|
|
|
|
services.readarr = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
};
|
|
|
|
users.extraUsers.readarr = {
|
|
extraGroups = [ "readarr" "multimedia" ];
|
|
};
|
|
}
|