portable-svc/flake.nix

8 lines
180 B
Nix

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