depot/third_party/home-manager/tests/modules/programs/gh/credential-helper.nix
Default email 75fa0ae5af Project import generated by Copybara.
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
2023-08-08 12:19:01 +02:00

21 lines
423 B
Nix

{ config, lib, pkgs, ... }:
{
programs.gh = {
enable = true;
gitCredentialHelper = {
enable = true;
hosts = [ "https://github.com" "https://github.example.com" ];
};
};
programs.git.enable = true;
test.stubs.gh = { };
nmt.script = ''
assertFileExists home-files/.config/git/config
assertFileContent home-files/.config/git/config \
${./credential-helper.git.conf}
'';
}