1
Fork 0
mirror of https://github.com/thegeneralist01/config.git synced 2026-03-07 10:59:55 +01:00

feat: jellyfish

This commit is contained in:
TheGeneralist 2025-05-31 22:02:40 +02:00
parent e27160a84d
commit 6b999083e7
Signed by: thegeneralist01
SSH key fingerprint: SHA256:pp9qddbCNmVNoSjevdvQvM5z0DHN7LTa8qBMbcMq/R4
2 changed files with 14 additions and 1 deletions

View file

@ -5,7 +5,7 @@
{ self, config, pkgs, lib, inputs, ... }:
{
imports = [ ./hardware-configuration.nix ];
imports = [ ./hardware-configuration.nix ./jellyfin.nix ];
users.knownUsers = [
"central"

View file

@ -0,0 +1,13 @@
{
services.jellyfin = {
user = "central";
group = "central";
logDir = "/var/log/jellyfin";
enable = true;
package = pkgs.jellyfin;
dataDir = "/var/lib/jellyfin";
cacheDir = "/Users/central/.cache/jellyfin";
configDir = "/etc/jellyfin";
openFirewall = true;
};
}