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; + }; +}