mirror of
https://github.com/nix-community/home-manager
synced 2024-11-17 00:29:45 +01:00
cfe82d9f44
Co-authored-by: Sumner Evans <me@sumnerevans.com>
21 lines
364 B
Nix
21 lines
364 B
Nix
{ 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}
|
|
'';
|
|
}
|