From dbbb3e49e43d7ddaa1389f0fae0d537e4c858a8c Mon Sep 17 00:00:00 2001 From: jacobi petrucciani Date: Mon, 7 Oct 2024 17:49:20 -0400 Subject: [PATCH] add nfs to edge --- hosts/edge/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/edge/configuration.nix b/hosts/edge/configuration.nix index acbf7e8c..3057ddc9 100644 --- a/hosts/edge/configuration.nix +++ b/hosts/edge/configuration.nix @@ -35,6 +35,7 @@ in }; kernel.sysctl = { } // common.sysctl_opts; tmp.useTmpfs = true; + supportedFilesystems = [ "nfs" ]; }; environment = { @@ -55,6 +56,7 @@ in }; systemPackages = with pkgs; [ amazon-ecr-credential-helper + nfs-utils ]; }; @@ -186,6 +188,7 @@ in }; }; goto.enable = true; + rpcbind.enable = true; } // common.services; virtualisation.docker.enable = true;