aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 151edd3..aee510d 100644
--- a/flake.nix
+++ b/flake.nix
@@ -7,8 +7,11 @@
let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in {
- devShells.x86_64-linux.default = pkgs.mkShell {
- buildInputs = [pkgs.uiua];
+ devShells.x86_64-linux.default = with pkgs; mkShell {
+ buildInputs = [
+ uiua
+ just
+ ];
};
};
}