nixos-config/modules/system/filesystems-media-server.nix

16 lines
263 B
Nix
Raw Permalink Normal View History

2025-03-11 12:57:34 -04:00
{ config, lib, pkgs, ... }:
{
fileSystems =
let
2025-04-05 14:37:22 -04:00
opts = [ "noatime" "noauto" "x-systemd.automount" ];
2025-03-11 12:57:34 -04:00
in {
2025-03-11 13:31:24 -04:00
"/mnt/import" = {
2025-04-05 14:37:22 -04:00
device = "media-server:/export/import";
2025-04-05 14:11:59 -04:00
fsType = "nfs";
options = opts;
2025-03-11 12:57:34 -04:00
};
};
}