fucking goodnight (template done, network diagram prepped)

This commit is contained in:
2025-10-06 23:43:04 -05:00
parent 4b3e283602
commit cf17575211
4 changed files with 95 additions and 57 deletions

View File

@@ -2,6 +2,7 @@
let
cfg = config.modules.services.jellyfin;
ids = 701;
in
{
options.modules.services.jellyfin = {
@@ -18,12 +19,12 @@ in
config = lib.mkIf cfg.enable {
# declare jellyfin group
users.groups.jellyfin = { gid = 701; };
users.groups.jellyfin = { gid = ids; };
# declare jellyfin user
users.users.jellyfin = {
description = "jellyfin media server user";
uid = 701;
uid = ids;
isSystemUser = true;
home = "/var/lib/jellyfin";
createHome = true;