Add Jellyfin and media mount

This commit is contained in:
Greg Hellings
2022-10-10 15:09:26 -05:00
parent 458b59cee8
commit f18262fa0b
+11
View File
@@ -35,4 +35,15 @@
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
fileSystems."/media" = {
device = "10.42.1.4:/volume1/video/";
fsType = "nfs";
options = [ "ro" ];
};
services.jellyfin = {
enable = true;
openFirewall = true;
};
}