1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 11:53:27 +02:00
home-manager/tests/modules/programs/gh/credential-helper.nix

22 lines
423 B
Nix
Raw Normal View History

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