From a9fc0ab3646c9dbe5ca893d0ea3e643678e1a40e Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee <107522312+lavafroth@users.noreply.github.com> Date: Sun, 2 Jun 2024 08:15:09 +0530 Subject: [PATCH] feat; move git related packages into respective module --- hosts/default/configuration.nix | 2 -- hosts/default/git.nix | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index 216fc40..4101840 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -132,7 +132,6 @@ fd ffmpeg-full file - gh gimp gnome.gnome-boxes go @@ -144,7 +143,6 @@ kdenlive krita blender - lazygit libreoffice-fresh mpv nil diff --git a/hosts/default/git.nix b/hosts/default/git.nix index 220837c..144bb4d 100644 --- a/hosts/default/git.nix +++ b/hosts/default/git.nix @@ -17,4 +17,9 @@ let githubHelper = "${pkgs.gh}/bin/gh auth git-credential"; in signing.key = "${config.home.homeDirectory}/.ssh/id_ed25519"; }; + + home.packages = with pkgs; [ + gh + lazygit + ]; }