Personal-use NixOS configuration

Switch to openssh_hpn

+8
+1
modules/common/default.nix
··· 3 3 ./locale/en_US.nix 4 4 5 5 ./network/firewall.nix 6 + ./network/ssh.nix 6 7 7 8 ./system/coreutils.nix 8 9 ./system/firmware.nix
+7
modules/common/network/ssh.nix
··· 1 + { pkgs, ... }: 2 + 3 + { 4 + programs.ssh = { 5 + package = pkgs.openssh_hpn; 6 + }; 7 + }