mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 19:49:45 +01:00
17 lines
382 B
Nix
17 lines
382 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.git-credential-oauth = { enable = true; };
|
||
|
|
||
|
programs.git = { enable = true; };
|
||
|
|
||
|
test.stubs.git-credential-oauth = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/git/config
|
||
|
assertFileContains \
|
||
|
home-files/.config/git/config \
|
||
|
"${config.programs.git-credential-oauth.package}/bin/git-credential-oauth"
|
||
|
'';
|
||
|
}
|