Files
home-manager/system-environment/ssh.nix
2026-06-02 17:40:00 +02:00

31 lines
497 B
Nix

{ config, pkgs, ... }:
let
profile = import ../profile.nix;
in
{
programs.ssh = {
enable = true;
enableDefaultConfig = false;
settings."*" = { };
extraConfig = ''
Host git.nickr.eu
HostName git.nickr.eu
Port 22
Host nickr.eu
HostName nickr.eu
Port 222
Host nichkara.eu
HostName nichkara.eu
Port 222
Host git.nichkara.eu
HostName git.nichkara.eu
Port 22
'';
};
}