From 262fba83ba0e2ee1ab8b8e967607bee9dd13b263 Mon Sep 17 00:00:00 2001 From: twoneis Date: Sat, 6 Jan 2024 16:14:34 +0100 Subject: [PATCH] change to gh package to avoid overwriting configuration --- modules/home/git/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/home/git/default.nix b/modules/home/git/default.nix index ee922b9..de994f7 100644 --- a/modules/home/git/default.nix +++ b/modules/home/git/default.nix @@ -1,11 +1,9 @@ -{ ... }: { +{ pkgs, ... }: { programs.git = { enable = true; userName = "twoneis"; userEmail = "sanjay29@sapura.de"; }; - programs.gh = { - enable = true; - }; + home.packages = with pkgs; [ gh ]; }