ssh auth fix

This commit is contained in:
2024-04-26 23:44:35 +02:00
parent 9034e79cf4
commit 1f64cdebb6
4 changed files with 21 additions and 2 deletions

View File

@@ -20,7 +20,7 @@
};
environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
ntfs3g
dosfstools

View File

@@ -44,7 +44,7 @@
programs.mtr.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
# enableSSHSupport = true;
};
# This setups a SSH server. Very important if you're setting up a headless system.
@@ -59,6 +59,12 @@
};
};
programs.ssh = {
startAgent = true;
forwardX11 = true;
enableAskPassword = true;
};
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];