home: git: add git-related packages when enabled
All checks were successful
continuous-integration/drone/push Build is passing

Instead of adding them in the general packages section.
This commit is contained in:
Bruno BELANYI 2021-10-12 21:32:13 +02:00
parent e475855e18
commit b1cff1b8a3
2 changed files with 6 additions and 3 deletions

View file

@ -9,6 +9,12 @@ in
enable = mkDisableOption "git configuration";
};
config.home.packages = with pkgs.gitAndTools; lib.mkIf cfg.enable [
gitAndTools.git-absorb
gitAndTools.git-revise
gitAndTools.tig
];
config.programs.git = lib.mkIf cfg.enable {
enable = true;

View file

@ -19,9 +19,6 @@ in
config.home.packages = with pkgs; lib.mkIf cfg.enable ([
file
gitAndTools.git-absorb
gitAndTools.git-revise
gitAndTools.tig
rr
termite.terminfo
] ++ cfg.additionalPackages);