mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 11:36:16 +01:00
14 lines
299 B
Nix
14 lines
299 B
Nix
|
{ inputs, ... }:
|
||
|
{
|
||
|
flake.overlays.magic-screenshot =
|
||
|
final: prev: {
|
||
|
magic-screenshot = final.writeSubstitutedShellScriptBin {
|
||
|
name = "screenshot";
|
||
|
file = ./screenshot;
|
||
|
substitutes = with prev; {
|
||
|
inherit busybox scrot xclip;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|