nix_config/sys/platforms/vps/hardware-configuration.nix
Fabian Montero 22eecd6e66
remove 2011 nas export
this was used for bepasty
2025-01-23 12:15:39 -06:00

18 lines
230 B
Nix

{
config,
lib,
pkgs,
flakes,
modulesPath,
...
}: let
in {
fileSystems = {
"/mnt/export2008" = {
device = "172.16.129.19:/nas/5876";
fsType = "nfs";
options = ["nofail" "noatime"];
};
};
}