nix_config/sys/platforms/vps/hardware-configuration.nix

18 lines
230 B
Nix
Raw Normal View History

2024-12-03 02:25:34 +01:00
{
config,
lib,
pkgs,
flakes,
modulesPath,
...
}: let
in {
fileSystems = {
"/mnt/export2008" = {
device = "172.16.129.19:/nas/5876";
fsType = "nfs";
options = ["nofail" "noatime"];
};
};
}