add multiple git credential helpers
This commit is contained in:
parent
171dd9fb9f
commit
da8fc59447
1 changed files with 7 additions and 1 deletions
8
home.nix
8
home.nix
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
home.packages = [
|
home.packages = [
|
||||||
pkgs.git
|
pkgs.git
|
||||||
|
pkgs.git-credential-oauth
|
||||||
pkgs.fluffychat
|
pkgs.fluffychat
|
||||||
pkgs.cinny-desktop
|
pkgs.cinny-desktop
|
||||||
pkgs.firefox
|
pkgs.firefox
|
||||||
|
@ -167,9 +168,14 @@
|
||||||
key = "A70775C389ACF105";
|
key = "A70775C389ACF105";
|
||||||
signByDefault = true;
|
signByDefault = true;
|
||||||
};
|
};
|
||||||
|
extraConfig = {
|
||||||
|
credential.helper = ["${
|
||||||
|
pkgs.git.override { withLibsecret = true; }
|
||||||
|
}/bin/git-credential-libsecret" "cache --timeout 41600" "oauth"];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
#programs.thefuck.enable = true;
|
#programs.thefuck.enable = true;
|
||||||
programs.git-credential-oauth.enable = true;
|
#programs.git-credential-oauth.enable = true;
|
||||||
programs.kitty = {
|
programs.kitty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
theme = "Catppuccin-Frappe";
|
theme = "Catppuccin-Frappe";
|
||||||
|
|
Loading…
Reference in a new issue