enable keepassxc secret agent

disable gnome keyring
enable ssh agent
encrypt keepassxc config because it contains secret agent keys now
remove alacritty config
This commit is contained in:
Pim Kunis 2023-11-04 18:00:24 +01:00
parent 0abb32ef30
commit 17db8c152e
7 changed files with 23 additions and 118 deletions

View file

@ -1,33 +0,0 @@
{
General = {
ConfigVersion = 2;
};
Browser = {
CustomProxyLocation = "";
Enabled = true;
};
GUI = {
MinimizeOnClose = true;
MinimizeOnStartup = true;
ShowExpiredEntriesOnDatabaseUnlock = false;
ShowTrayIcon = true;
TrayIconAppearance = "monochrome-light";
};
PasswordGenerator = {
AdditionalChars = "";
ExcludedChars = "";
};
SSHAgent = {
Enabled = true;
};
Security = {
ClearClipboardTimeout = 30;
ClearSearch = false;
EnableCopyOnDoubleClick = true;
};
}

View file

@ -1,8 +1,11 @@
{ pkgs, lib, ...}:
{ pkgs, config, ...}:
{
config = {
home.packages = [ pkgs.keepassxc ];
xdg.configFile."keepassxc/keepassxc.ini".text = lib.generators.toINI {} (import ./config.nix);
homeage.file."keepassxc.ini" = {
source = ../../secrets/keepassxc.ini.age;
symlinks = [ "${config.xdg.configHome}/keepassxc/keepassxc.ini" ];
};
};
}