nixos-config/modules/system/filesystems-filez.nix

37 lines
739 B
Nix
Raw Normal View History

2025-02-16 16:24:34 -05:00
{ config, lib, pkgs, ... }:
{
2025-04-05 13:53:10 -04:00
services.rpcbind.enable = true; # needed for NFS
2025-02-16 16:24:34 -05:00
fileSystems =
let
2025-04-05 14:11:59 -04:00
opts = [ "nfsvers=4.1" "noatime" "noauto" "x-systemd.automount" ];
2025-02-16 16:24:34 -05:00
in {
"/mnt/filez/media" = {
2025-04-05 13:53:10 -04:00
device = "filez:/volume1/Media";
fsType = "nfs";
options = opts;
2025-02-16 16:24:34 -05:00
};
"/mnt/filez/music-production" = {
2025-04-05 14:11:59 -04:00
device = "filez:/volume1/MusicProduction";
2025-04-05 13:53:10 -04:00
fsType = "nfs";
options = opts;
2025-02-16 16:24:34 -05:00
};
"/mnt/filez/storage" = {
2025-04-05 13:53:10 -04:00
device = "filez:/volume1/Storage";
fsType = "nfs";
options = opts;
2025-02-16 16:24:34 -05:00
};
"/mnt/filez/photos" = {
2025-04-05 14:11:59 -04:00
device = "filez:/volume1/Photos";
2025-04-05 13:53:10 -04:00
fsType = "nfs";
options = opts;
2025-02-16 16:24:34 -05:00
};
};
}