2024-11-09 14:02:26 +00:00
|
|
|
{ pkgs, lib, ... }:
|
|
|
|
{
|
2024-11-08 10:18:04 +00:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
keepassxc
|
|
|
|
];
|
2024-11-12 07:16:46 +00:00
|
|
|
xdg.configFile."keepassxc/keepassxc.ini".text = lib.generators.toINI { } {
|
2024-11-09 07:57:31 +00:00
|
|
|
General.ConfigVersion = 2;
|
|
|
|
Browser = {
|
|
|
|
CustomProxyLocation = "";
|
|
|
|
Enabled = true;
|
|
|
|
UpdateBinaryPath = false;
|
|
|
|
};
|
2024-11-24 13:59:35 +00:00
|
|
|
GUI.ApplicationTheme = "classic";
|
2024-11-24 16:03:36 +00:00
|
|
|
FdoSecrets.Enabled = true;
|
2024-11-09 07:57:31 +00:00
|
|
|
};
|
2024-11-08 10:18:04 +00:00
|
|
|
}
|