mirror of
https://github.com/nmasur/dotfiles
synced 2025-01-31 09:52:03 +00:00
10 lines
271 B
Nix
10 lines
271 B
Nix
{ 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"
|
|
''
|