introducing proper jellyfin

This commit is contained in:
Ingolf Wagner 2023-01-16 19:37:48 +01:00
parent bc25bcdc9e
commit 1c3cacdd07
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B
4 changed files with 14 additions and 4 deletions

View file

@ -20,6 +20,7 @@
./grocy.nix ./grocy.nix
./taskwarrior-pushover.nix ./taskwarrior-pushover.nix
#./neo4j.nix #./neo4j.nix
./jellyfin.nix
]; ];
@ -62,8 +63,6 @@
services.printing.enable = false; services.printing.enable = false;
services.smartd.enable = true; services.smartd.enable = true;
# todo move to some place else # todo move to some place else
home-manager.users.mailUser.home.stateVersion = "22.11"; home-manager.users.mailUser.home.stateVersion = "22.11";

View file

@ -28,6 +28,6 @@ in
allDevices; allDevices;
}; };
} }

View file

@ -0,0 +1,6 @@
{ config, lib, pkgs, ... }:
{
services.jellyfin.enable = true;
services.jellyfin.openFirewall = true;
users.groups."syncthing".members = [ "jellyfin" ];
}

View file

@ -31,7 +31,7 @@
]); ]);
} }
{ {
text = "IoT"; text = "Home";
items = [ items = [
{ {
label = "HomeAssistant"; label = "HomeAssistant";
@ -43,6 +43,11 @@
href = "http://pepe.private:9666/"; href = "http://pepe.private:9666/";
image = "https://media.giphy.com/media/fyLi0OuWysotq/giphy.gif"; image = "https://media.giphy.com/media/fyLi0OuWysotq/giphy.gif";
} }
{
label = "Jellyfin";
href = "http://pepe:8096/";
image = "https://media.giphy.com/media/fyLi0OuWysotq/giphy.gif";
}
]; ];
} }
{ {