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

37 lines
725 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 13:53:10 -04:00
opts = [ "nfsvers=4.1" "noatime" "noauto" ];
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 13:53:10 -04:00
device = "filez:/volume1/Music Production";
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 13:53:10 -04:00
device = "filez:/volume1/Photo Storage";
fsType = "nfs";
options = opts;
2025-02-16 16:24:34 -05:00
};
};
}