feat(direnv): prefer mkShellNoCC

This commit is contained in:
aemogie 2024-05-03 12:04:06 +05:30
parent 8637edba9b
commit 0d02eb962d
No known key found for this signature in database

View file

@ -17,7 +17,7 @@
in
{
devShells = forAllSystems (pkgs: {
default = pkgs.mkShell {
default = pkgs.mkShellNoCC {
packages = [ pkgs.hello ];
IN_SHELL = "yes!";
};