1
0
Fork 0
nix-system-configurations/home-manager/personal/ssh.nix
2025-09-26 19:27:25 -05:00

21 lines
456 B
Nix

# SPDX-FileCopyrightText: 2025 Ethan Reece <contact@ethanreece.com>
#
# SPDX-License-Identifier: MIT
{ flakeConfig, ... }:
{
programs.ssh = {
enable = true;
matchBlocks = {
"gamingserver" = {
user = flakeConfig.profiles.personal.shortNames.realFirst;
};
"proxmox" = {
hostname = "gamingserver";
};
"docker" = {
user = flakeConfig.profiles.personal.shortNames.netName;
};
};
};
}