We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d4aef0 commit 96ef69aCopy full SHA for 96ef69a
flake.nix
@@ -74,6 +74,13 @@
74
overlays = [ self.overlay ];
75
localSystem = { inherit system; };
76
});
77
+
78
+ apps = forEachSystemPkgs (pkgs:
79
+ builtins.mapAttrs (name: exe: {
80
+ type = "app";
81
+ program = exe + "/bin/${name}";
82
+ }) pkgs.haskell-nix.nix-tools.exes
83
+ );
84
};
85
86
# --- Flake Local Nix Configuration ----------------------------
0 commit comments