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

15 lines
296 B
Nix
Raw Normal View History

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-08 10:18:04 +00:00
}