Files
home-manager/system-environment/ssh.nix
Nina Chlóe Kassandra Reiß 11459f6c8f Add ssh to system-environment
2026-04-20 23:16:55 +02:00

29 lines
471 B
Nix

{ config, pkgs, ... }:
let
profile = import ../profile.nix;
in
{
programs.ssh = {
enable = true;
enableDefaultConfig = true;
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
'';
};
}