dotfiles/nix/overlays/screenshot/default.nix

12 lines
237 B
Nix
Raw Normal View History

nglib:
final: prev:
{
magic_rb.screenshot = (nglib prev.stdenv.system).writeSubstitutedShellScriptBin {
name = "screenshot";
file = ./screenshot;
substitutes = with prev; {
inherit busybox scrot xclip;
};
};
}