mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
18 lines
336 B
Nix
18 lines
336 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
programs.gh = {
|
|
enable = true;
|
|
enableGitCredentialHelper = true;
|
|
};
|
|
|
|
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}
|
|
'';
|
|
}
|