mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 22:43:55 -05:00
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.alyraffauf.apps.keepassxc.enable {
|
|
home = {
|
|
file.".cache/keepassxc/keepassxc.ini".text = lib.generators.toINI {} {
|
|
General.LastActiveDatabase = "/${config.home.homeDirectory}/sync/Passwords.kdbx";
|
|
};
|
|
packages = [pkgs.keepassxc];
|
|
};
|
|
|
|
xdg.configFile."keepassxc/keepassxc.ini".text = lib.generators.toINI {} {
|
|
Browser = {
|
|
AlwaysAllowAccess = true;
|
|
Enabled = true;
|
|
SearchInAllDatabases = true;
|
|
};
|
|
|
|
General = {
|
|
ConfigVersion = 2;
|
|
HideWindowOnCopy = true;
|
|
MinimizeAfterUnlock = false;
|
|
MinimizeOnOpenUrl = true;
|
|
};
|
|
|
|
GUI = {
|
|
ApplicationTheme = "classic";
|
|
ColorPasswords = false;
|
|
CompactMode = true;
|
|
MinimizeOnClose = true;
|
|
MinimizeOnStartup = false;
|
|
MinimizeToTray = true;
|
|
ShowTrayIcon = true;
|
|
TrayIconAppearance = "colorful";
|
|
};
|
|
|
|
Security = {
|
|
ClearClipboardTimeout = 15;
|
|
EnableCopyOnDoubleClick = true;
|
|
IconDownloadFallback = true;
|
|
LockDatabaseScreenLock = true;
|
|
};
|
|
|
|
SSHAgent = {
|
|
Enabled = true;
|
|
};
|
|
};
|
|
};
|
|
}
|