dotfiles/nix/overlays/screenshot/default.nix
Magic_RB 4615711358
Updates
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-12-22 23:48:31 +01:00

13 lines
257 B
Nix

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