feat(direnv): example env var

This commit is contained in:
aemogie 2024-05-03 11:39:43 +05:30
parent a1f5521383
commit 8637edba9b
No known key found for this signature in database

View file

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