9 lines
128 B
Nix
9 lines
128 B
Nix
{ config, ... }: let
|
|
cfg = config.services.plex;
|
|
in {
|
|
services.plex = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
};
|
|
}
|