nixos_config/devenv.nix

23 lines
272 B
Nix
Raw Normal View History

2025-07-24 10:48:56 +02:00
{ pkgs, lib, config, inputs, ... }:
{
2025-07-29 11:25:40 +02:00
packages = [
pkgs.git
];
2025-07-24 10:48:56 +02:00
scripts.hello.exec = ''
echo hello from $GREET
'';
enterShell = ''
hello
git --version
'';
enterTest = ''
echo "Running tests"
nix flake check --all-systems
'';
}