From ceda390df26dd1e1f56493bb1faa1b52c2c78548 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sat, 10 Jul 2021 16:02:42 -0600 Subject: [PATCH] [NixOS] Add plex to biskcomp --- nixos/machines/biskcomp.nix | 1 + nixos/plex.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 nixos/plex.nix diff --git a/nixos/machines/biskcomp.nix b/nixos/machines/biskcomp.nix index 5e175d58..5edd79c6 100644 --- a/nixos/machines/biskcomp.nix +++ b/nixos/machines/biskcomp.nix @@ -1,6 +1,7 @@ { imports = [ ../raspberry-pi.nix + ../plex.nix ]; networking.hostName = "biskcomp"; diff --git a/nixos/plex.nix b/nixos/plex.nix new file mode 100644 index 00000000..67ea1bec --- /dev/null +++ b/nixos/plex.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: +{ + services.plex = { + enable = true; + }; +}