Skip to content

Instantly share code, notes, and snippets.

@vic
Last active February 26, 2025 04:37
Show Gist options
  • Save vic/73eab091b33e7909065b21c61edf5a4d to your computer and use it in GitHub Desktop.
Save vic/73eab091b33e7909065b21c61edf5a4d to your computer and use it in GitHub Desktop.
example flake with overlays
{
outputs = inputs: {
overlays.foo = final: prev: {
foo = final.writeShellScriptBin "foo" "echo FOO";
};
overlays.moo = final: prev: {
moo = final.writeShellScriptBin "moo" "echo MOO";
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment