nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

nfs.nix (140B)


      1 {
      2   fileSystems."/tank" = {
      3     device = "192.168.1.3:/tank";
      4     fsType = "nfs";
      5     options = [ "x-systemd.automount" "noauto" ];
      6     };
      7 }