add flake app

This commit is contained in:
Akshay 2021-10-23 14:16:44 +05:30
parent 05b11f14b7
commit 2e7b95f224

View File

@ -76,6 +76,12 @@
defaultPackage =
forAllSystems (system: self.packages."${system}".statix);
defaultApp = forAllSystems (system:
{
type = "app";
program = "${self.packages."${system}".statix}/bin/statix";
});
devShell = forAllSystems (system:
let
pkgs = nixpkgsFor.${system};