dotfiles/nix/overlays/gpg-key/default.nix
Magic_RB 11fc09120b
Switch old halfFlake system to regular overlays
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-04-09 00:35:36 +02:00

12 lines
236 B
Nix

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;
};
};
}