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

@@ -14,6 +14,7 @@ in
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
../../roles/virtualisation/default.nix ../../roles/virtualisation/default.nix
../../roles/nfs-mounts/default.nix
]; ];
# Use the systemd-boot EFI boot loader. # Use the systemd-boot EFI boot loader.

View File

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