mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
23 lines
462 B
Nix
23 lines
462 B
Nix
|
{ pkgs, ... }: {
|
||
|
config = {
|
||
|
programs.git = {
|
||
|
enable = true;
|
||
|
userName = "John Doe";
|
||
|
userEmail = "user@example.org";
|
||
|
|
||
|
signing = {
|
||
|
gpgPath = "path-to-gpg";
|
||
|
key = null;
|
||
|
signByDefault = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/git/config
|
||
|
assertFileContent home-files/.config/git/config ${
|
||
|
./git-without-signing-key-id-expected.conf
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
}
|