nixos/home/ssh/personal.nix
Evie Litherland-Smith 8c7f8dba52 Rearrange again to reduce complexity
Move collections to use default.nix in relevant directories
Combine GUI elements into gui directory
2023-05-15 11:12:17 +01:00

13 lines
315 B
Nix

{ lib, ... }:
{
imports = [ ./common.nix ];
programs.ssh.matchBlocks = {
"legion" = { port = 30; };
"vanguard" = { hostname = "192.168.1.166"; port = 22; };
"legion vanguard xenia.me.uk" = lib.hm.dag.entryAfter [ "legion" "vanguard" ] {
user = "root";
forwardAgent = true;
};
};
}