From 204fb8320761cd1e1916b7225d3b8db723af601e Mon Sep 17 00:00:00 2001 From: Yves Dubromelle Date: Mon, 11 Oct 2021 22:24:56 +0200 Subject: [PATCH] =?UTF-8?q?git=20a=20son=20option=20d=C3=A9di=C3=A9e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- applications/terminal/default-applications.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/applications/terminal/default-applications.nix b/applications/terminal/default-applications.nix index aa96d0a..802f670 100644 --- a/applications/terminal/default-applications.nix +++ b/applications/terminal/default-applications.nix @@ -12,7 +12,7 @@ mkIf true { # Paquets environment.systemPackages = with pkgs; [ byobu # permet de se déconnecter d'un terminal sans l'arréter - gitAndTools.gitFull gitAndTools.tig gti # outil de gestion de version + tig gti # outil de gestion de version gnumake # pour décrire les recettes de compilation gnupg # GPG htop # monitoring @@ -33,5 +33,11 @@ mkIf true { wget # client HTTP console which # pour connaitre le chemin d'un exécutable ]; - programs.gnupg.agent.enable = true; + programs = { + gnupg.agent.enable = true; + git = { + enable = true; + package = pkgs.gitFull; + }; + }; }