nix/nixos/hosts/nuc-server/mounts.nix

14 lines
332 B
Nix
Raw Normal View History

{
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";
};
}