dotfiles/nix/overlays/gpg-key/default.nix

12 lines
236 B
Nix
Raw Normal View History

nglib:
final: prev:
{
magic_rb.gpg-key = (nglib prev.stdenv.system).writeSubstitutedShellScriptBin {
name = "gpg-key";
file = ./gpg-key;
substitutes = with prev; {
inherit cryptsetup busybox findutils;
};
};
}