2025-08-08 17:00:47 -04:00
|
|
|
{ pkgs, lib, config, ... }: {
|
|
|
|
|
|
|
|
|
|
options = {
|
2025-08-09 00:05:47 +00:00
|
|
|
hoardingcow-mount.enable = lib.mkEnableOption "enable hoardingcow access";
|
2025-08-08 17:00:47 -04:00
|
|
|
};
|
|
|
|
|
config = lib.mkIf config.hoardingcow-mount.enable {
|
|
|
|
|
fileSystems."/mnt/HoardingCow_docker_data" = {
|
|
|
|
|
device = "192.168.1.2:/WorkHorse_docker_data";
|
|
|
|
|
fsType = "nfs";
|
2026-07-08 16:23:41 -04:00
|
|
|
options = [
|
|
|
|
|
"noatime"
|
|
|
|
|
"hard"
|
|
|
|
|
"nofail"
|
|
|
|
|
"_netdev"
|
|
|
|
|
"rsize=1048576"
|
|
|
|
|
"wsize=1048576"
|
|
|
|
|
"timeo=14"
|
|
|
|
|
"retrans=5"
|
|
|
|
|
];
|
2025-08-08 17:00:47 -04:00
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|