mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
22 lines
469 B
Nix
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}
|
|
'';
|
|
}
|