1
0
Fork 0
mirror of https://github.com/emacs-twist/org-babel.git synced 2025-03-05 08:17:05 +00:00

Use overlays.default rather than overlay as the flake output

This commit is contained in:
Akira Komamura 2022-12-01 17:41:04 +09:00
parent 5e980863ed
commit 92e7d57aa5

View file

@ -7,10 +7,12 @@
in
{
inherit lib;
overlay = _: prev: {
tangleOrgBabelFile = name: path: options:
prev.writeText name
(lib.tangleOrgBabel options (builtins.readFile path));
overlays = {
default = _: prev: {
tangleOrgBabelFile = name: path: options:
prev.writeText name
(lib.tangleOrgBabel options (builtins.readFile path));
};
};
};
}