nixos/modules/media-share/default.nix

9 lines
159 B
Nix
Raw Normal View History

2022-10-17 21:58:03 +02:00
{ pkgs, ... }:
{
fileSystems."/mnt/media" = {
device = "10.7.89.108:media";
fsType = "nfs";
options = [ "noatime" "hard" "nfsvers=4.0" ];
};
}