remove gh cli from home manager

This commit is contained in:
uku 2023-12-17 18:59:15 +01:00
parent ee8c8e8375
commit 91347d9587
Signed by: uku
GPG key ID: 7D01D7B105E77166
2 changed files with 19 additions and 20 deletions

View file

@ -2,5 +2,5 @@ final: prev: {
shotcut = final.qt6Packages.callPackage ./shotcut.nix {}; shotcut = final.qt6Packages.callPackage ./shotcut.nix {};
# FUCK REPRODUCIBILITY RARGHGHGHGHDKGJDKLGJSDKLGMDJGLKSDJLMGSJDKMGJZEIZ # FUCK REPRODUCIBILITY RARGHGHGHGHDKGJDKLGJSDKLGMDJGLKSDJLMGSJDKMGJZEIZ
vesktop = prev.vesktop.overrideAttrs (old: { patches = []; }); vesktop = prev.vesktop.overrideAttrs (old: {patches = [];});
} }

View file

@ -1,7 +1,10 @@
{ {pkgs, ...}: {
programs.git.enable = true; programs.git.enable = true;
hm.programs = { hm = {
home.packages = with pkgs; [gh];
programs = {
git = { git = {
enable = true; enable = true;
userName = "uku"; userName = "uku";
@ -17,10 +20,6 @@
push.autoSetupRemote = true; push.autoSetupRemote = true;
}; };
}; };
gh = {
enable = true;
gitCredentialHelper.enable = true;
}; };
}; };
} }