keepassxc: init
This commit is contained in:
parent
605b20d67c
commit
b7b2187440
4 changed files with 19 additions and 0 deletions
|
|
@ -8,6 +8,7 @@
|
|||
"/Applications/Zen.app"
|
||||
"/Applications/Ghostty.app"
|
||||
"/System/Applications/Music.app"
|
||||
"/Applications/Nix Apps/KeePassXC.app"
|
||||
{ spacer.small = true; }
|
||||
|
||||
"/Applications/Infuse.app"
|
||||
|
|
|
|||
|
|
@ -27,5 +27,6 @@
|
|||
iina
|
||||
raycast
|
||||
anki-bin
|
||||
keepassxc
|
||||
]);
|
||||
}
|
||||
|
|
|
|||
16
modules/applications/keepassxc.nix
Normal file
16
modules/applications/keepassxc.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
keepassxc
|
||||
];
|
||||
# browser extensions
|
||||
programs.firefox.policies.ExtensionSettings."keepassxc-browser@keepassxc.org" = {
|
||||
installation_mode = "force_installed";
|
||||
install_url = "https://addons.mozilla.org/firefox/downloads/latest/keepassxc-browser/latest.xpi";
|
||||
};
|
||||
|
||||
programs.chromium.extensions = [
|
||||
"oboonakemofpalcgghocfoadofidjkkk" # KeePassXC
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue