Last active
February 26, 2025 04:37
-
-
Save vic/73eab091b33e7909065b21c61edf5a4d to your computer and use it in GitHub Desktop.
example flake with overlays
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
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