aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index c086684..a319266 100644
--- a/flake.nix
+++ b/flake.nix
@@ -76,6 +76,12 @@
76 defaultPackage = 76 defaultPackage =
77 forAllSystems (system: self.packages."${system}".statix); 77 forAllSystems (system: self.packages."${system}".statix);
78 78
79 defaultApp = forAllSystems (system:
80 {
81 type = "app";
82 program = "${self.packages."${system}".statix}/bin/statix";
83 });
84
79 devShell = forAllSystems (system: 85 devShell = forAllSystems (system:
80 let 86 let
81 pkgs = nixpkgsFor.${system}; 87 pkgs = nixpkgsFor.${system};