Configure keepassxc for browser extension support

Add manually installed extensions as comments.
I could install them from user repositories, but I keep this for now.
This commit is contained in:
Daniel Siepmann 2022-05-31 08:47:21 +02:00
parent 8b19401941
commit cd63d01702
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
2 changed files with 26 additions and 0 deletions

View file

@ -8,6 +8,10 @@
profiles = { profiles = {
default = { default = {
# Extensions:
# * https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/
# * https://addons.mozilla.org/en-US/firefox/addon/languagetool/
# * https://addons.mozilla.org/en-US/firefox/addon/keepassxc-browser/
name = "default"; name = "default";
id = 0; id = 0;
isDefault = true; isDefault = true;

View file

@ -10,16 +10,24 @@
"borg/exclude".source = ./files/borg-exclude; "borg/exclude".source = ./files/borg-exclude;
"ctags/config.ctags".source = ./files/ctags; "ctags/config.ctags".source = ./files/ctags;
"keepassxc/keepassxc.ini".text = pkgs.lib.generators.toINI { } { "keepassxc/keepassxc.ini".text = pkgs.lib.generators.toINI { } {
General = { General = {
ConfigVersion = 2; ConfigVersion = 2;
}; };
GUI = { GUI = {
ApplicationTheme = "dark"; ApplicationTheme = "dark";
CompactMode = true; CompactMode = true;
HidePreviewPanel = false; HidePreviewPanel = false;
HideToolbar = true; HideToolbar = true;
HideUsernames = false; HideUsernames = false;
MinimizeToTray = true;
ShowTrayIcon = true;
TrayIconAppearance = "monochrome-dark";
}; };
PasswordGenerator = { PasswordGenerator = {
AdditionalChars = ""; AdditionalChars = "";
AdvancedMode = true; AdvancedMode = true;
@ -31,6 +39,20 @@
Quotes = true; Quotes = true;
SpecialChars = false; SpecialChars = false;
}; };
Browser = {
CustomProxyLocation = "";
Enabled = true;
SearchInAllDatabases = true;
};
Security = {
ClearSearchTimeout = 1;
LockDatabaseIdle = true;
LockDatabaseIdleSeconds = 60;
Security_HideNotes = true;
};
}; };
"litecli/config".source = ./files/litecli; "litecli/config".source = ./files/litecli;
"phpactor".source = ./files/phpactor; "phpactor".source = ./files/phpactor;