[NixOS] Add plex to biskcomp

This commit is contained in:
Ivan Malison 2021-07-10 16:02:42 -06:00
parent f55fa0508e
commit ceda390df2
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
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;
};
}