21 lines
318 B
Nix
21 lines
318 B
Nix
{
|
|
mkShellNoCC,
|
|
git,
|
|
writeShellApplication,
|
|
}:
|
|
mkShellNoCC {
|
|
name = "nichts";
|
|
|
|
DIRENV_LOG_FORMAT = "";
|
|
|
|
packages = [
|
|
git # take a guess
|
|
|
|
(writeShellApplication {
|
|
name = "update";
|
|
text = ''
|
|
nix flake update && git commit flake.lock -m "flake: bump inputs"
|
|
'';
|
|
})
|
|
];
|
|
}
|