Add nfs mounts

This commit is contained in:
2024-08-23 12:52:06 -07:00
parent e341234d00
commit ca4cdd0d26
2 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{ config, ... }:
{
fileSystems."/media" = {
device = "10.0.0.43:/media";
fsType = "nfs";
};
}