neovim first init

This commit is contained in:
Noah Masur
2025-02-04 21:57:59 -05:00
parent 8819bb9b9b
commit bb1a36330b
27 changed files with 107 additions and 18 deletions

View File

@ -0,0 +1,9 @@
{ pkgs, ... }:
pkgs.writeShellScriptBin "loadkey" ''
printf "\nEnter the seed phrase for your SSH key...\n"
printf "\nThen press ^D when complete.\n\n"
mkdir -p ~/.ssh/
${pkgs.melt}/bin/melt restore ~/.ssh/id_ed25519
printf "\n\nContinuing activation.\n\n"
''