modules/dependencies: add git

This commit is contained in:
Gaetan Lepage 2025-04-06 17:21:24 +02:00 committed by nix-infra-bot
parent 30c4d00b72
commit 9abe8fd025
26 changed files with 179 additions and 149 deletions

View file

@ -84,13 +84,15 @@
{
plugins.gitgutter = {
enable = true;
gitPackage = null;
grepPackage = null;
settings = {
git_executable = lib.getExe pkgs.git;
grep = lib.getExe pkgs.gnugrep;
};
};
dependencies.git.enable = false;
assertions = [
{
assertion = lib.all (x: x.pname or null != "git") config.extraPackages;