[NixOS] Add plex to biskcomp

This commit is contained in:
2021-07-10 16:02:42 -06:00
parent f55fa0508e
commit ceda390df2
2 changed files with 7 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
{ {
imports = [ imports = [
../raspberry-pi.nix ../raspberry-pi.nix
../plex.nix
]; ];
networking.hostName = "biskcomp"; networking.hostName = "biskcomp";

6
nixos/plex.nix Normal file
View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
services.plex = {
enable = true;
};
}