feat(core): initialize NaxOS declarative NixOS distribution, modules, and ISO installer
Test NaxOS Module Configurations / test-modules (push) Failing after 6m10s

This commit is contained in:
Lukas Holzner
2026-09-03 23:53:18 +02:00
parent 88a638955b
commit 5da58ae6d7
28 changed files with 2247 additions and 2 deletions
+33
View File
@@ -0,0 +1,33 @@
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.services.naxos.apps.jellyfin;
in {
options.services.naxos.apps.jellyfin = {
enable = mkEnableOption "Jellyfin Open-Source Media Streaming Server";
openFirewall = mkOption {
type = types.bool;
default = true;
description = "Open port 8096 in firewall.";
};
user = mkOption {
type = types.str;
default = "jellyfin";
description = "Service user.";
};
};
config = mkIf cfg.enable {
services.jellyfin = {
enable = true;
openFirewall = cfg.openFirewall;
user = cfg.user;
};
users.users.${cfg.user}.extraGroups = [ "video" "render" ];
};
}