add keepassxc configuration

This commit is contained in:
Charlotte 🦝 Delenk 2024-11-09 08:57:31 +01:00
parent 815e1d17e6
commit eead2d9c29

View file

@ -1,5 +1,13 @@
{ pkgs, ... }: { { lib, ... }: {
home.packages = with pkgs; [ home.packages = with pkgs; [
keepassxc keepassxc
]; ];
xdg.configFile."keepassxc.ini" = lib.generators.toINI {} {
General.ConfigVersion = 2;
Browser = {
CustomProxyLocation = "";
Enabled = true;
UpdateBinaryPath = false;
};
};
} }