mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
10 lines
163 B
Nix
10 lines
163 B
Nix
{ pkgs, ... }: {
|
|
|
|
type = "app";
|
|
|
|
program = builtins.toString (pkgs.writeShellScript "loadkey" ''
|
|
${pkgs.melt}/bin/melt restore ~/.ssh/id_ed25519
|
|
'');
|
|
|
|
}
|