diff --git a/host/configuration.nix b/host/configuration.nix index 70f4ceb..e244635 100644 --- a/host/configuration.nix +++ b/host/configuration.nix @@ -27,6 +27,13 @@ openssl ]; + # Enable dynamic linking + programs.nix-ld.enable = true; + programs.nix-ld.libraries = with pkgs; [ + # Add any missing dynamic libraries for unpackaged programs + # here, NOT in environment.systemPackages + ]; + services.openssh.enable = true; services.openssh.settings.PasswordAuthentication = false;