dotfiles/nix/overlays/screenshot/default.nix

13 lines
257 B
Nix
Raw Normal View History

final: prev:
{
magic_rb = prev.magic_rb or {} // {
screenshot = final.writeSubstitutedShellScriptBin {
name = "screenshot";
file = ./screenshot;
substitutes = with prev; {
inherit busybox scrot xclip;
};
};
};
}