24 lines
507 B
Nix
24 lines
507 B
Nix
{
|
|
rum.programs.keepassxc = {
|
|
enable = true;
|
|
settings = {
|
|
General = {
|
|
BackupBeforeSave = true;
|
|
ConfigVersion = 2;
|
|
UseAtomicSaves = false;
|
|
};
|
|
Browser = {
|
|
Enabled = true;
|
|
};
|
|
GUI = {
|
|
ApplicationTheme = "auto";
|
|
ColorPasswords = true;
|
|
MinimizeOnClose = true;
|
|
MinimizeOnStartup = true;
|
|
MinimizeToTray = true;
|
|
ShowTrayIcon = true;
|
|
TrayIconAppearance = "colorful";
|
|
};
|
|
};
|
|
};
|
|
}
|