20 lines
355 B
Nix
20 lines
355 B
Nix
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
{ depot, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./content.nix
|
||
|
];
|
||
|
|
||
|
users.users.plex.extraGroups = [ "content" ];
|
||
|
|
||
|
services.plex = {
|
||
|
enable = true;
|
||
|
dataDir = "/store/plex";
|
||
|
openFirewall = true;
|
||
|
package = depot.nix.pkgs.plex-pass;
|
||
|
};
|
||
|
}
|