From daf63d5d439c92edca02af4f0cb4e1f27dd1bf6e Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Tue, 5 Aug 2025 18:11:26 -0500 Subject: [PATCH] add h003 ssh target --- common/_home_manager/mods/ssh.nix | 4 ++++ readme.md | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/common/_home_manager/mods/ssh.nix b/common/_home_manager/mods/ssh.nix index 7b0631b..d324115 100644 --- a/common/_home_manager/mods/ssh.nix +++ b/common/_home_manager/mods/ssh.nix @@ -116,6 +116,10 @@ in identityFile = age.secrets.nix2h002.path; user = "luser"; }; + "h003" = { + identityFile = age.secrets.nix2h003.path; + user = "luser"; + }; # LINODE SERVERS "l001" = { identityFile = age.secrets.nix2linode.path; diff --git a/readme.md b/readme.md index 336e8de..19e2cdb 100644 --- a/readme.md +++ b/readme.md @@ -99,7 +99,6 @@ boot.initrd.luks.devices - Maybe copy hardware/configs over and setup, otherwise do it on the client machine - git clone nixos-config `git clone https://git.joshuabell.xyz/ringofstorms/dotfiles ~/.config/nixos-config` - Setup config as needed - - top level flake.nix additions - add hosts dir and files needed - `sudo nixos-rebuild switch --flake ~/.config/nixos-config/hosts/$HOSTNAME` - Update remote, ssh should work now: `cd ~/.config/nixos-config && git remote remove origin && git remote add origin "ssh://git.joshuabell.xyz:3032/ringofstorms/dotfiles" && git pull origin master`