hosts/samhain+profiles/gui: NFS + Jellyfin

This commit is contained in:
kat witch 2021-04-26 19:37:04 +01:00
parent 5b318cb782
commit 41b786d436
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
3 changed files with 52 additions and 42 deletions

View file

@ -0,0 +1,23 @@
{ config, ... }:
{
boot.supportedFilesystems = [ "nfs" ];
fileSystems."/mnt/kat-nas" = {
device = "samhain.net.kittywit.ch:/mnt/zraw/media";
fsType = "nfs";
options = [ "x-systemd.automount" "noauto" ];
};
fileSystems."/mnt/hex-corn" = {
device = "storah.net.lilwit.ch:/data/cornbox";
fsType = "nfs";
options = [ "x-systemd.automount" "noauto" ];
};
fileSystems."/mnt/hex-tor" = {
device = "storah.net.lilwit.ch:/data/torrents";
fsType = "nfs";
options = [ "x-systemd.automount" "noauto" ];
};
}