Lints and suggestions for the Nix programming language
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add flake app

Akshay 2e7b95f2 05b11f14

+6
+6
flake.nix
··· 76 76 defaultPackage = 77 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 85 devShell = forAllSystems (system: 80 86 let 81 87 pkgs = nixpkgsFor.${system};