1
0
mirror of https://codeberg.org/privacy1st/nix-git synced 2025-04-05 17:25:59 +02:00

22 lines
495 B
Nix

{ config, pkgs, ... }:
{
home-manager.users."root" = { osConfig, config, pkgs, ... }: {
# SSH client configuration.
programs.ssh = {
enable = true;
userKnownHostsFile = "~/.ssh/known_hosts ${../../assets/ssh/known_hosts}";
matchBlocks = {
"rootNas" = {
hostname = "rootnas.p1st.de";
user = "root";
port = 2222;
compression = false;
identityFile = "~/.ssh/rootNas_ed25519";
};
};
};
};
}