nixos_config/devenv.nix
2025-07-29 11:25:40 +02:00

22 lines
272 B
Nix

{ pkgs, lib, config, inputs, ... }:
{
packages = [
pkgs.git
];
scripts.hello.exec = ''
echo hello from $GREET
'';
enterShell = ''
hello
git --version
'';
enterTest = ''
echo "Running tests"
nix flake check --all-systems
'';
}