feat: init media server system profile

This commit is contained in:
ooks-io 2024-02-12 15:32:25 +13:00
parent d2bd5abbed
commit dc8a3d5dd1
7 changed files with 71 additions and 2 deletions

View file

@ -0,0 +1,14 @@
{ lib, ... }:
{
imports = [
./jellyfin
];
options.systemModules.services = {
jellyfin = {
enable = lib.mkEnableOption "Enable jellyfin service module";
};
};
}