From 9ac63220d5aa40d9a79e30bcd233a787f7f6bae5 Mon Sep 17 00:00:00 2001 From: Jack O'Sullivan Date: Sun, 30 Jun 2024 00:07:12 +0100 Subject: [PATCH] nixos/installer: Add NFS client --- nixos/installer.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/installer.nix b/nixos/installer.nix index 9e6abb9..2e53810 100644 --- a/nixos/installer.nix +++ b/nixos/installer.nix @@ -82,11 +82,12 @@ ${pkgs.gawk}/bin/awk '{ print $1 }')" ''; + boot.supportedFilesystems.nfs = true; + environment.systemPackages = with pkgs; [ dhcpcd lm_sensors ethtool - nfs-utils ]; # Much of this onwards is yoinked from modules/profiles/installation-device.nix