feat: add plex config

This commit is contained in:
Felix Schröter 2020-03-21 16:55:25 +01:00
parent b42f97bbec
commit d2db7cd863
No known key found for this signature in database
GPG key ID: A12D7C9D2FD34458
2 changed files with 8 additions and 0 deletions

View file

@ -9,6 +9,7 @@
./hardware/ledger.nix
./system
./desktop
# ./plex.nix
];
nixpkgs.config.allowUnfree = true;

7
plex.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
services.plex.enable = true;
services.plex.openFirewall = true;
services.plex.user = "felschr";
}