From c9da24a33e1125872ccff977772460f9ab951b57 Mon Sep 17 00:00:00 2001 From: Cody Allen Date: Tue, 21 Nov 2023 09:42:40 -0500 Subject: [PATCH] Nix flake: set default app to haskell-nix unison-cli app --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index 5e1223290a..1a749b4e06 100644 --- a/flake.nix +++ b/flake.nix @@ -103,6 +103,10 @@ }; }; + apps = haskell-nix-flake.apps // { + default = self.apps."${system}"."unison-cli:exe:unison"; + }; + devShells = nixpkgs-devShells // { default = self.devShells."${system}".only-tools-nixpkgs; haskell-nix = haskell-nix-flake.devShells;