mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
gh: support gh as git credential manager for github.com
Co-authored-by: Sumner Evans <me@sumnerevans.com>
This commit is contained in:
parent
3e4fedc1d9
commit
cfe82d9f44
4 changed files with 33 additions and 0 deletions
|
@ -90,6 +90,11 @@ in {
|
||||||
};
|
};
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enableGitCredentialHelper =
|
||||||
|
mkEnableOption "the gh git credential helper for github.com" // {
|
||||||
|
default = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
@ -97,5 +102,9 @@ in {
|
||||||
|
|
||||||
xdg.configFile."gh/config.yml".source =
|
xdg.configFile."gh/config.yml".source =
|
||||||
yamlFormat.generate "gh-config.yml" cfg.settings;
|
yamlFormat.generate "gh-config.yml" cfg.settings;
|
||||||
|
|
||||||
|
programs.git.extraConfig.credential."https://github.com".helper =
|
||||||
|
mkIf cfg.enableGitCredentialHelper
|
||||||
|
"${cfg.package}/bin/gh auth git-credential";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
2
tests/modules/programs/gh/credential-helper.git.conf
Normal file
2
tests/modules/programs/gh/credential-helper.git.conf
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[credential "https://github.com"]
|
||||||
|
helper = "@gh@/bin/gh auth git-credential"
|
21
tests/modules/programs/gh/credential-helper.nix
Normal file
21
tests/modules/programs/gh/credential-helper.nix
Normal 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}
|
||||||
|
'';
|
||||||
|
}
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
gh-config-file = ./config-file.nix;
|
gh-config-file = ./config-file.nix;
|
||||||
|
gh-credential-helper = ./credential-helper.nix;
|
||||||
gh-warnings = ./warnings.nix;
|
gh-warnings = ./warnings.nix;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue