From df548225d4d965e6657dfbafaa01412b4d4b4dae Mon Sep 17 00:00:00 2001 From: Edmund Miller Date: Sun, 17 Dec 2023 18:58:03 -0600 Subject: [PATCH] fix(unas): Enable NFS --- hosts/unas/hardware-configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/unas/hardware-configuration.nix b/hosts/unas/hardware-configuration.nix index a3c25d44..c05af9e7 100644 --- a/hosts/unas/hardware-configuration.nix +++ b/hosts/unas/hardware-configuration.nix @@ -22,4 +22,7 @@ ## ZFS networking.hostId = "13e53d45"; boot.loader.grub.copyKernels = true; + + ## NFS + services.nfs.server.enable = true; }