diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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}; |