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 {};
# FUCK REPRODUCIBILITY RARGHGHGHGHDKGJDKLGJSDKLGMDJGLKSDJLMGSJDKMGJZEIZ
vesktop = prev.vesktop.overrideAttrs (old: { patches = []; });
vesktop = prev.vesktop.overrideAttrs (old: {patches = [];});
}

View file

@ -1,26 +1,25 @@
{
{pkgs, ...}: {
programs.git.enable = true;
hm.programs = {
git = {
enable = true;
userName = "uku";
userEmail = "uku3lig@gmail.com";
hm = {
home.packages = with pkgs; [gh];
signing = {
key = "0D2F5CFF394C558D4F1C58937D01D7B105E77166";
signByDefault = true;
programs = {
git = {
enable = true;
userName = "uku";
userEmail = "uku3lig@gmail.com";
signing = {
key = "0D2F5CFF394C558D4F1C58937D01D7B105E77166";
signByDefault = true;
};
extraConfig = {
core.autocrlf = "input";
push.autoSetupRemote = true;
};
};
extraConfig = {
core.autocrlf = "input";
push.autoSetupRemote = true;
};
};
gh = {
enable = true;
gitCredentialHelper.enable = true;
};
};
}