12 lines
163 B
Nix
12 lines
163 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
{
|
||
|
nixpkgs.config.allowUnfree = true;
|
||
|
|
||
|
services.plex = {
|
||
|
dataDir = "/data/plex";
|
||
|
user = "cadey";
|
||
|
enable = true;
|
||
|
};
|
||
|
}
|