export attribute in overlay

Signed-off-by: Xe <me@christine.website>
This commit is contained in:
Cadey Ratio 2022-02-27 11:23:06 +00:00
parent 0ad783fd91
commit 138c25c1c3
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@
description = "Nix tools to help you build portable services";
outputs = { self }: {
overlay = final: prev: prev.pkgs.callPackage ./. { };
overlay = final: prev: { portableService = prev.pkgs.callPackage ./. { }; };
};
}