nixcfg/homeManagerModules/apps/keepassxc/default.nix

52 lines
1.2 KiB
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}: {
config = lib.mkIf config.ar.home.apps.keepassxc.enable {
home.packages = [pkgs.keepassxc];
2024-07-13 21:34:41 -04:00
xdg.configFile."keepassxc/keepassxc.ini".text = let
defaults = {
Browser = {
AlwaysAllowAccess = true;
Enabled = true;
SearchInAllDatabases = true;
UpdateBinaryPath = false;
};
2024-06-21 22:19:28 -04:00
2024-07-13 21:34:41 -04:00
General = {
ConfigVersion = 2;
HideWindowOnCopy = true;
MinimizeAfterUnlock = false;
MinimizeOnOpenUrl = true;
};
2024-06-21 22:19:28 -04:00
2024-07-13 21:34:41 -04:00
GUI = {
ApplicationTheme = "classic";
ColorPasswords = false;
CompactMode = true;
MinimizeOnClose = true;
MinimizeOnStartup = true;
MinimizeToTray = true;
ShowTrayIcon = true;
TrayIconAppearance = "colorful";
};
2024-06-21 22:19:28 -04:00
2024-07-13 21:34:41 -04:00
Security = {
ClearClipboardTimeout = 15;
EnableCopyOnDoubleClick = true;
IconDownloadFallback = true;
LockDatabaseScreenLock = false;
};
2024-06-21 22:19:28 -04:00
2024-07-13 21:34:41 -04:00
SSHAgent.Enabled = true;
};
2024-06-21 22:19:28 -04:00
2024-07-13 21:34:41 -04:00
settings = defaults // config.ar.home.apps.keepassxc.settings;
in
lib.generators.toINI {} settings;
};
}