Commit 5e68d3a0706a

Vincent Demeester <vincent@sbr.pm>
2024-02-20 13:56:09
git: clean packages we install a bit
- I don't use most things from gitFull - I don't use git-annex anymore - I don't think I need git-extras either Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 6850c9d
Changed files (3)
systems
modules
profiles
shell
users
vincent
systems/modules/profiles/git.nix
@@ -12,9 +12,8 @@ in
   };
   config = mkIf cfg.enable {
     environment.systemPackages = with pkgs; [
-      gitAndTools.gitFull
-      gitAndTools.git-annex
-      gitAndTools.git-extras
+      git
+      # gitAndTools.git-extras
     ];
     environment.etc."gitconfig" = rec {
       text = ''
systems/modules/shell/git.nix
@@ -11,12 +11,11 @@ in
     environment = {
       # Install some packages
       systemPackages = with pkgs; [
-        gitAndTools.gitFull
-        gitAndTools.git-annex
-        gitAndTools.git-extras
+        git
+        # gitAndTools.git-extras
         (mkIf config.modules.shell.gnupg.enable
           gitAndTools.git-crypt)
-        tig
+        lazygit
       ];
       # Default gitconfig
       etc."gitconfig".source = ./git/config;
users/vincent/core/git.nix
@@ -29,7 +29,7 @@ in
     gist
     git-lfs
     git-review
-    gitAndTools.git-annex
+    # gitAndTools.git-annex
     gitAndTools.hub
     gitAndTools.gh
     gitAndTools.git-appraise
@@ -42,7 +42,7 @@ in
   ];
   programs.git = {
     enable = true;
-    package = pkgs.gitAndTools.gitFull;
+    package = pkgs.git;
 
     userName = "Vincent Demeester";
     userEmail = "vincent@sbr.pm";