Bruno BELANYI
27d089afaa
This service makes use of the default webui. I really like combustion more, but am willing to use that one instead given the few amount of time I actually spend looking at it
11 lines
237 B
Nix
11 lines
237 B
Nix
# Abstracting away the need for a common 'media' group
|
|
|
|
{ config, lib, ... }:
|
|
let
|
|
needed = with config.my.services;
|
|
jellyfin.enable || pirate.enable || transmission.enable;
|
|
in
|
|
{
|
|
config.users.groups.media = lib.mkIf needed { };
|
|
}
|