nixos/home/ssh/personal.nix

14 lines
268 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{lib, ...}: {
imports = [./common.nix];
programs.ssh.matchBlocks = {
"vanguard" = {
user = "xenia";
2023-05-16 13:08:57 +01:00
hostname = "192.168.1.166";
};
"git.xenia.me.uk" = lib.hm.dag.entryBefore ["git*"] {
user = "gitea";
2023-05-16 13:08:57 +01:00
port = 2222;
};
};
}