Adding Jellyfin
This commit is contained in:
parent
29b68823ad
commit
6fd0fa43d6
5 changed files with 57 additions and 9 deletions
|
|
@ -5,5 +5,6 @@
|
|||
- `kalif` : Factorio (`factorio.lyes.eu`)
|
||||
- `link` : Kanidm (`auth.lyes.eu`)
|
||||
- `maistro` : Incus
|
||||
- `mikau` : Jellyfin (`media.lyes.eu`)
|
||||
- `nayru` : Komga/Manga (`manga.lyes.eu`)
|
||||
- `taf` : Mail (`taf.lyes.eu`/`mail.lyes.eu`)
|
||||
|
|
|
|||
25
modules/server/mikau/default.nix
Normal file
25
modules/server/mikau/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
hardware.graphics = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs; [
|
||||
intel-compute-runtime
|
||||
intel-media-driver
|
||||
intel-vaapi-driver
|
||||
libva-vdpau-driver
|
||||
libvdpau-va-gl
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
services.jellyfin = {
|
||||
enable = true;
|
||||
user = "jellyfin";
|
||||
group = "media";
|
||||
};
|
||||
|
||||
users.users.jellyfin.extraGroups = [ "media" ];
|
||||
|
||||
networking.firewall.allowedUDPPorts = [ 7359 ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue