mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-01 20:46:12 +01:00
aff0158ef7
Signed-off-by: magic_rb <magic_rb@redalder.org>
14 lines
341 B
Nix
14 lines
341 B
Nix
{inputs, ...}: {
|
|
flake.overlays.magic-screenshot = final: prev: {
|
|
magic-screenshot =
|
|
(final.writeSubstitutedShellScriptBin {
|
|
name = "screenshot";
|
|
file = ./screenshot;
|
|
substitutes = with prev; {
|
|
inherit busybox scrot xclip;
|
|
};
|
|
})
|
|
// {meta.mainProgram = "screenshot";};
|
|
};
|
|
}
|