8 Mar 2025 |
K900 | Then you just need to encrypt to your SSH host key | 07:07:16 |
K900 | Not your user key | 07:07:19 |
laurent | In reply to @k900:0upti.me You don't want any password prompts at all? I dont want a password prompt hanging on the boot sequence as it freezes my machine, and the "asking for password prompt" is hidden behind the nixos booting logo. Im used to only have one ssh key with other linux distrib,so i prob didnt setup things properly by having the same key for host and user. Ill investigate! | 07:16:23 |
K900 | The host key is not something you need to manually create | 07:16:52 |
K900 | It's created when you start sshd for the first time, in /etc/ssh/sshhostkey_ed25519 | 07:17:05 |
laurent | Ahh thx, i wasnt even aware of this folder! I put my key in my ~/.ssh as for other linux! | 07:20:11 |
K900 | Those are different keys | 07:20:23 |
K900 | Your key in ~/.ssh identifies your user | 07:20:28 |
K900 | The host key in /etc/ssh identifies the machine | 07:20:35 |
laurent | Got it! And when i set up agenix i encrypted with my user key, which i then use in the identityfile option of agenix! So i should have encrypted with the host machine correct? But this host ssh key is automatically regenerated on a new nixos install? | 07:25:13 |
K900 | You encrypt with the public part of the host key | 07:25:36 |
K900 | And then it's decrypted with the private part | 07:25:43 |
laurent | * Got it! And when i set up agenix, i encrypted with my user key, which i then use in the identityfile option of agenix! So i should have encrypted with the host machine correct? But this host ssh key is automatically regenerated on a new nixos install? | 07:25:45 |
K900 | And yes, the host key is generated per machine | 07:25:48 |
K900 | So you probably want to also encrypt to your own user key, so you can access the secrets if you don't have any of the host keys | 07:26:06 |
laurent | Thx! I did everything the wrong way then. So the host key needs obviously to be backed up. I ll check some doc to see how to reinstall it the nix way on a fresh install.thx a lot fornyour help | 07:29:13 |