Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelroses committed Sep 4, 2023
1 parent eac9074 commit 5142bf6
Showing 1 changed file with 23 additions and 15 deletions.
38 changes: 23 additions & 15 deletions home/isabel/system/ssh.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@
base = {
user = "isabel";
};
template = base // {
identityFile = "~/.ssh/nixos";
};
template =
base
// {
identityFile = "~/.ssh/nixos";
};
in {
# git clients
"aur.archlinux.org" = {
Expand Down Expand Up @@ -39,20 +41,26 @@
identityFile = "~/.ssh/king";
};

"amity" = base // {
hostname = "143.47.240.116";
identityFile = "~/.ssh/amity";
};
"amity" =
base
// {
hostname = "143.47.240.116";
identityFile = "~/.ssh/amity";
};

# hetzner cloud vps
"bernie" = template // {
hostname = "91.107.198.173";
};
# hetzner cloud vps
"bernie" =
template
// {
hostname = "91.107.198.173";
};

# my local servers / clients
"hydra" = template // {
hostname = "192.168.86.3";
};
# my local servers / clients
"hydra" =
template
// {
hostname = "192.168.86.3";
};

/*
"alpha" = {
Expand Down

0 comments on commit 5142bf6

Please sign in to comment.