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

14 lines
332 B
Nix
Raw Normal View History

{
2023-12-19 11:47:03 +01:00
fileSystems."/Storage/Data" = {
device = "192.168.1.13:/Data";
fsType = "nfs";
};
2023-12-19 11:47:03 +01:00
fileSystems."/Storage/Video" = {
device = "192.168.1.13:/Video";
fsType = "nfs";
};
2023-12-19 11:47:03 +01:00
fileSystems."/Storage/Backups" = {
device = "192.168.1.13:/Backups";
fsType = "nfs";
};
}