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