alias the vpn ips into config because mirroring mdns is hard

This commit is contained in:
Lillian Violet 2025-02-03 19:01:54 +01:00
parent d22e2f4934
commit 27aa71ed8a
3 changed files with 29 additions and 0 deletions

View file

@ -4,6 +4,7 @@
...
}: {
imports = [
./ssh
./shell/helix
./shell/zellij
./shell/zsh.nix

View file

@ -0,0 +1,20 @@
Host wheatley
HostName 10.0.0.1
User lillian
Port 22
Host GLaDOS
HostName 10.0.0.2
User lillian
Port 22
Host EDI
HostName 10.0.0.3
User lillian
Port 22
Host Shodan
HostName 10.0.0.4
User lillian
Port 22

View file

@ -0,0 +1,8 @@
{...}: {
# TODO: make this dynamic instead of hard coded
home.file."config" = {
source = ./config;
target = ".config/ssh/config";
force = true;
};
}