mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
13 lines
314 B
Nix
13 lines
314 B
Nix
{ pkgs, ... }: {
|
|
|
|
type = "app";
|
|
|
|
program = builtins.toString (pkgs.writeShellScript "loadkey" ''
|
|
printf "\nEnter the seed phrase for your SSH key...\n"
|
|
printf "\nThen press ^D when complete.\n\n"
|
|
${pkgs.melt}/bin/melt restore ~/.ssh/id_ed25519
|
|
printf "\n\nContinuing activation.\n\n"
|
|
'');
|
|
|
|
}
|