22 lines
272 B
Nix
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
|
|
'';
|
|
}
|