[NixOS] Enable emby on biskcomp

This commit is contained in:
Ivan Malison 2021-07-10 21:03:33 -06:00
parent e88d7edbe0
commit 7761df6ce3
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
2 changed files with 7 additions and 1 deletions

6
nixos/emby.nix Normal file
View File

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

View File

@ -1,7 +1,7 @@
{
imports = [
../raspberry-pi.nix
# ../plex.nix
../emby.nix
../internet-computer.nix
];