nix/nixos/hosts/nuc-server/mounts.nix
iFargle 1fca88fbbe
Some checks failed
build-linode-img / build-linode-img (push) Failing after 1h27m47s
test
2023-12-19 19:47:03 +09:00

14 lines
No EOL
332 B
Nix

{
fileSystems."/Storage/Data" = {
device = "192.168.1.13:/Data";
fsType = "nfs";
};
fileSystems."/Storage/Video" = {
device = "192.168.1.13:/Video";
fsType = "nfs";
};
fileSystems."/Storage/Backups" = {
device = "192.168.1.13:/Backups";
fsType = "nfs";
};
}