From 2cd9bfcda631362915c000feacb472333830126c Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Sat, 19 Jul 2025 22:16:30 +0000
Subject: [PATCH] Add pool over nfs

---
 smaxi/hardware-configuration.nix |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/smaxi/hardware-configuration.nix b/smaxi/hardware-configuration.nix
index e0b28ef..23db609 100644
--- a/smaxi/hardware-configuration.nix
+++ b/smaxi/hardware-configuration.nix
@@ -12,6 +12,7 @@
   boot.initrd.kernelModules = [ ];
   boot.kernelModules = [ "kvm-amd" ];
   boot.extraModulePackages = [ ];
+  boot.supportedFilesystems = [ "nfs" ];
 
   fileSystems."/" =
     { device = "/dev/disk/by-uuid/e00faf82-ced3-4095-9070-be1137bce8ae";
@@ -25,6 +26,11 @@
       options = [ "fmask=0077" "dmask=0077" ];
     };
 
+  fileSystems."/pool" = 
+    { device = "smini:/pool";
+      fsType = "nfs";
+    };
+
   swapDevices = [ ];
 
   # Enables DHCP on each ethernet and wireless interface. In case of scripted networking

--
Gitblit v1.10.0