From 7761df6ce338f6e51cc9a5bd5a5618b008d31927 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sat, 10 Jul 2021 21:03:33 -0600 Subject: [PATCH] [NixOS] Enable emby on biskcomp --- nixos/emby.nix | 6 ++++++ nixos/machines/biskcomp.nix | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 nixos/emby.nix diff --git a/nixos/emby.nix b/nixos/emby.nix new file mode 100644 index 00000000..8e706e13 --- /dev/null +++ b/nixos/emby.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: +{ + services.emby = { + enable = true; + }; +} diff --git a/nixos/machines/biskcomp.nix b/nixos/machines/biskcomp.nix index f9ba06c6..65d60b75 100644 --- a/nixos/machines/biskcomp.nix +++ b/nixos/machines/biskcomp.nix @@ -1,7 +1,7 @@ { imports = [ ../raspberry-pi.nix - # ../plex.nix + ../emby.nix ../internet-computer.nix ];