devshell/.nix/repo/devShells.nix

15 lines
270 B
Nix
Raw Normal View History

{inputs, ...}: let
inherit (inputs) pkgs devshell;
2025-07-31 12:37:19 +02:00
in {
default = devshell.mkShell {
packages = [
pkgs.alejandra
];
2025-07-31 12:37:19 +02:00
env."HELLO".value = "world!";
enterShellCommands.test = {
text = "echo Hello $HELLO";
deps = ["env"];
};
};
}