add nix flake app

Signed-off-by: Finn Behrens <me@kloenk.dev>
This commit is contained in:
Finn Behrens 2021-09-22 21:22:21 +02:00
parent 9cda37ce53
commit 03bc223b64

View File

@ -40,5 +40,14 @@
packages = forAllSystems (system: nixpkgsFor.${system});
defaultPackage = forAllSystems (system: self.packages.${system}.kalker);
apps = forAllSystems (system: {
kalker = {
type = "app";
program = "${self.packages.${system}.kalker}/bin/kalker";
};
});
defaultApp = forAllSystems (system: self.apps.${system}.kalker);
};
}