gh: support gh as git credential manager for github.com

Co-authored-by: Sumner Evans <me@sumnerevans.com>
This commit is contained in:
Anselm Schüler 2021-10-19 06:43:52 +02:00 committed by Robert Helgesson
parent 3e4fedc1d9
commit cfe82d9f44
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
4 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,2 @@
[credential "https://github.com"]
helper = "@gh@/bin/gh auth git-credential"

View file

@ -0,0 +1,21 @@
{ config, lib, pkgs, ... }:
{
programs.gh = {
enable = true;
enableGitCredentialHelper = true;
};
programs.git.enable = true;
test.stubs = {
gh = { };
git = { };
};
nmt.script = ''
assertFileExists home-files/.config/git/config
assertFileContent home-files/.config/git/config \
${./credential-helper.git.conf}
'';
}

View file

@ -1,4 +1,5 @@
{
gh-config-file = ./config-file.nix;
gh-credential-helper = ./credential-helper.nix;
gh-warnings = ./warnings.nix;
}