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/keepassxc/example-settings.nix
2025-10-26 15:43:53 -05:00

22 lines
469 B
Nix

{
programs.keepassxc = {
enable = true;
settings = {
Browser.Enabled = true;
GUI = {
AdvancedSettings = true;
ApplicationTheme = "dark";
CompactMode = true;
HidePasswords = true;
};
SSHAgent.Enabled = true;
};
};
test.stubs.keepassxc = { };
nmt.script = ''
configFile=home-files/.config/keepassxc/keepassxc.ini
assertFileContent $configFile ${./keepassxc-example-config.ini}
'';
}