fix(flake): overlay export

dev-docs
Moritz Böhme 2023-05-02 09:04:57 +02:00
parent 69454aba52
commit ac3a0230eb
Signed by: moritz
GPG Key ID: 970C6E89EB0547A9
1 changed files with 6 additions and 5 deletions

View File

@ -109,11 +109,12 @@
self.overlay
];
# overlays = utils.lib.exportOverlays {
# inherit (self) pkgs inputs;
# };
overlays.default = self.overlay;
overlays = utils.lib.exportOverlays
{
inherit (self) pkgs inputs;
} // {
default = self.overlay;
};
/*