1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/git-credential-keepassxc/custom-groups.nix
2025-08-06 12:39:55 -05:00

15 lines
332 B
Nix

{
programs.git.enable = true;
programs.git-credential-keepassxc = {
enable = true;
groups = [
"A"
"B"
];
};
nmt.script = ''
assertFileExists home-files/.config/git/config
assertFileRegex home-files/.config/git/config 'helper = "\S*/bin/git-credential-keepassxc --group A --group B"'
'';
}