13 lines
225 B
Nix
13 lines
225 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf;
|
|
inherit (builtins) elem;
|
|
inherit (config.ooknet.host) profiles;
|
|
in {
|
|
config = mkIf (elem "media-server" profiles) {
|
|
ooknet.services.nixarr.enable = true;
|
|
};
|
|
}
|