change to gh package to avoid overwriting configuration

This commit is contained in:
twoneis 2024-01-06 16:14:34 +01:00
parent b74ba7d494
commit 262fba83ba

View file

@ -1,11 +1,9 @@
{ ... }: { { pkgs, ... }: {
programs.git = { programs.git = {
enable = true; enable = true;
userName = "twoneis"; userName = "twoneis";
userEmail = "sanjay29@sapura.de"; userEmail = "sanjay29@sapura.de";
}; };
programs.gh = { home.packages = with pkgs; [ gh ];
enable = true;
};
} }