nixos/home/modules/ssh.nix

51 lines
1.3 KiB
Nix
Raw Normal View History

2024-07-09 05:03:34 +00:00
{ lib, config, ... }:
let
cfg = config.snowhawk.ssh;
2024-07-24 07:24:16 +00:00
sops = config.snowhawk.sops.enable;
2024-07-09 05:03:34 +00:00
in
{
options.snowhawk.ssh = {
enable = lib.mkEnableOption "ssh";
2024-07-11 12:13:00 +00:00
homeNetwork = lib.mkEnableOption "include local hostnames for home network devices";
2024-07-09 05:03:34 +00:00
};
2024-07-28 13:08:59 +00:00
config =
2024-07-28 13:11:49 +00:00
let sshDir = config.home.homeDirectory + "/.ssh";
2024-07-28 13:08:59 +00:00
in lib.mkIf cfg.enable {
programs.ssh = {
enable = true;
includes = [ "conf.d/*" ];
matchBlocks = {
"git.zynh.me" = {
hostname = "git.zynh.me";
user = "git";
port = 2221;
2024-07-28 13:11:49 +00:00
identityFile = "${sshDir}/personal_git";
2024-07-28 13:08:59 +00:00
};
msiserver = {
hostname = "scarlet.zynh.me";
user = "zynh";
2024-07-28 13:11:49 +00:00
identityFile = "${sshDir}/msiserver";
2024-07-28 13:08:59 +00:00
};
"msiserver.local" = lib.mkIf cfg.homeNetwork {
hostname = "msiserver";
user = "zynh";
2024-07-28 13:11:49 +00:00
identityFile = "${sshDir}/msiserver";
2024-07-28 13:08:59 +00:00
};
caveserver = {
2024-07-28 13:11:49 +00:00
identityFile = "${sshDir}/caveserver";
2024-07-28 13:08:59 +00:00
};
2024-07-11 12:58:16 +00:00
};
2024-07-09 05:03:34 +00:00
};
2024-07-28 13:11:49 +00:00
sops.secrets = ifSops {
"private_keys/msiserver" = { };
"private_keys/caveserver" = { };
"ssh_hosts/caveserver".path = "${sshDir}/conf.d/caveserver_config";
};
2024-07-28 13:08:59 +00:00
};
2024-07-09 05:03:34 +00:00
}