feat: add ssh config for hydra

This commit is contained in:
Noa Aarts 2024-10-21 15:46:01 +02:00
parent 42a06fec96
commit 22df8d4baa
Signed by: noa
GPG key ID: 1850932741EFF672

View file

@ -77,6 +77,15 @@
users = {
"noa" = import ./home.nix;
"root" = import ./root.nix;
"hydra" = { ... }: {
home.stateVersion = "24.11"; # Please read the comment before changing.
home.file = {
".ssh/config".text = ''
Host 192.168.42.5
User noa
'';
};
};
};
};