1
0
Fork 0
forked from fi/nix-infra

Add jellyfin host

This commit is contained in:
fi 2023-08-01 23:02:11 +02:00
commit 693c6da88a
Signed by: fi
SSH key fingerprint: SHA256:d+6fQoDPMbSFK95zRVflRKZLRKF4cPSQb7VIxYkhFsA
9 changed files with 141 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ ... }:
{
fileSystems."/mnt/media" = {
device = "//10.202.46.5/media";
fsType = "cifs";
options = [
"username=jellyfin"
"credentials=/secrets/samba-credentials.secret"
"iocharset=utf8"
"vers=3.1.1"
"uid=jellyfin"
"gid=jellyfin"
"_netdev"
];
};
}