nix/nixos/hosts/nuc-server/mounts.nix
iFargle c056588475
Some checks failed
build-linode-img / build-linode-img (push) Failing after 30s
Add nuc-server, make docker/podman common services
2023-12-19 11:17:00 +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";
};
}