nixos-config/programs/desktop/password-manager.nix

14 lines
285 B
Nix
Raw Normal View History

2024-11-09 08:00:50 +00:00
{ pkgs, lib, ... }: {
2024-11-08 10:18:04 +00:00
home.packages = with pkgs; [
keepassxc
];
2024-11-09 08:00:50 +00:00
xdg.configFile."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-08 10:18:04 +00:00
}