mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
27 lines
743 B
Nix
27 lines
743 B
Nix
{ configs, pkgs, ... }:
|
|
|
|
{
|
|
home-manager.users.kat = {
|
|
programs.ssh = {
|
|
enable = true;
|
|
controlMaster = "auto";
|
|
controlPersist = "10m";
|
|
hashKnownHosts = true;
|
|
matchBlocks = let
|
|
common = {
|
|
forwardAgent = true;
|
|
extraOptions = {
|
|
RemoteForward =
|
|
"/run/user/1000/gnupg/S.gpg-agent /run/user/1000/gnupg/S.gpg-agent.extra";
|
|
};
|
|
port = 62954;
|
|
};
|
|
in {
|
|
"athame" = { hostname = "athame.kittywit.ch"; } // common;
|
|
"samhain" = { hostname = "192.168.1.135"; } // common;
|
|
"yule" = { hostname = "192.168.1.92"; } // common;
|
|
"boline" = { hostname = "boline.kittywit.ch"; } // common;
|
|
};
|
|
};
|
|
};
|
|
}
|