fix default devShell

This commit is contained in:
Emile Clark-Boman 2025-07-29 14:03:00 +10:00
parent 3d136d90f0
commit 999be39b36

View file

@ -43,15 +43,16 @@
allowUnfree = false; # sanity check allowUnfree = false; # sanity check
}; };
}; };
# TODO: come back to this its really cool # TODO: come back to this its really cool
# this is just something I'm experimenting with # this is just something I'm experimenting with
PROJECT_ROOT = builtins.toString ./.; # PROJECT_ROOT = builtins.toString ./.;
in { in {
# `nix develop` shell
devShells."x86_64-linux".default = pkgs.mkShell { devShells."x86_64-linux".default = pkgs.mkShell {
buildInputs = [ shell = "${pkgs.bash}/bin/bash";
#colmena-new
packages = with pkgs; [
# ./script/* dependencies
mkpasswd
]; ];
}; };