Cleanup devenv.nix

This commit is contained in:
2025-09-01 23:52:43 +03:00
parent 268c1dbb96
commit 406f6e21a5

View File

@@ -1,7 +1,4 @@
{ { pkgs, ... }:
pkgs,
...
}:
{ {
packages = [ packages = [
@@ -17,12 +14,10 @@
nil --version nil --version
''; '';
# https://devenv.sh/tasks/
tasks = { tasks = {
}; };
# https://devenv.sh/tests/
enterTest = '' enterTest = ''
echo "Running tests" echo "Running tests"
git --version | grep --color=auto "${pkgs.git.version}" git --version | grep --color=auto "${pkgs.git.version}"
@@ -32,6 +27,4 @@
nil.enable = true; nil.enable = true;
nixfmt-rfc-style.enable = true; nixfmt-rfc-style.enable = true;
}; };
# See full reference at https://devenv.sh/reference/options/
} }