16 lines
312 B
Nix
16 lines
312 B
Nix
{
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "John Doe";
|
|
userEmail = "user@example.org";
|
|
};
|
|
|
|
home.stateVersion = "25.05";
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/git/config
|
|
assertFileContent home-files/.config/git/config ${
|
|
./git-without-signing.conf
|
|
}
|
|
'';
|
|
}
|