21 lines
456 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|