nixos-config/modules/home/nfs.nix

8 lines
106 B
Nix
Raw Normal View History

2024-12-26 12:38:15 +01:00
{ ... }:
{
fileSystems."/nfs" = {
device = "harbour:/mnt/main/main_big";
fsType = "nfs";
};
}