add keepassxc configuration
This commit is contained in:
parent
815e1d17e6
commit
eead2d9c29
1 changed files with 9 additions and 1 deletions
|
@ -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;
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue