feat: create module to mount nfs drive

This commit is contained in:
Ahwx 2024-12-26 12:38:15 +01:00
parent 4eba641d2f
commit 7ae337e0c4

7
modules/home/nfs.nix Normal file
View file

@ -0,0 +1,7 @@
{ ... }:
{
fileSystems."/nfs" = {
device = "harbour:/mnt/main/main_big";
fsType = "nfs";
};
}