Charlotte 🦝 Delenk
aebd8cb5be
Some checks reported errors
Hydra nixosConfigurations.not522-installer Hydra build #25270 of nixos-config:pr618:nixosConfigurations.not522-installer
Hydra nixosConfigurations.not522 Hydra build #25269 of nixos-config:pr618:nixosConfigurations.not522
Hydra nixosConfigurations.rainbow-resort Hydra build #25272 of nixos-config:pr618:nixosConfigurations.rainbow-resort
Hydra nixosConfigurations.thinkrac Hydra build #25273 of nixos-config:pr618:nixosConfigurations.thinkrac
14 lines
296 B
Nix
14 lines
296 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
keepassxc
|
|
];
|
|
xdg.configFile."keepassxc/keepassxc.ini".text = lib.generators.toINI { } {
|
|
General.ConfigVersion = 2;
|
|
Browser = {
|
|
CustomProxyLocation = "";
|
|
Enabled = true;
|
|
UpdateBinaryPath = false;
|
|
};
|
|
};
|
|
}
|