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

22 lines
364 B
Nix
Raw Normal View History

{ 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}
'';
}