mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
9 lines
270 B
Nix
9 lines
270 B
Nix
{
|
|
programs.git.enable = true;
|
|
programs.git-credential-keepassxc.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/git/config
|
|
assertFileRegex home-files/.config/git/config 'helper = "\S*/bin/git-credential-keepassxc --git-groups"'
|
|
'';
|
|
}
|