mirror of
https://gitlab.com/rensa-nix/devshell.git
synced 2025-12-11 22:00:08 +01:00
14 lines
270 B
Nix
14 lines
270 B
Nix
{inputs, ...}: let
|
|
inherit (inputs) pkgs devshell;
|
|
in {
|
|
default = devshell.mkShell {
|
|
packages = [
|
|
pkgs.alejandra
|
|
];
|
|
env."HELLO".value = "world!";
|
|
enterShellCommands.test = {
|
|
text = "echo Hello $HELLO";
|
|
deps = ["env"];
|
|
};
|
|
};
|
|
}
|