keepassxc: init
This commit is contained in:
parent
605b20d67c
commit
b7b2187440
4 changed files with 19 additions and 0 deletions
|
|
@ -28,6 +28,7 @@
|
||||||
./modules/browser/firefox.nix
|
./modules/browser/firefox.nix
|
||||||
./modules/browser/chromium.nix
|
./modules/browser/chromium.nix
|
||||||
./modules/applications/default.nix
|
./modules/applications/default.nix
|
||||||
|
./modules/applications/keepassxc.nix
|
||||||
./modules/games/linux.nix
|
./modules/games/linux.nix
|
||||||
./modules/services/archiveteam-warrior.nix
|
./modules/services/archiveteam-warrior.nix
|
||||||
./modules/services/linkding.nix
|
./modules/services/linkding.nix
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@
|
||||||
"/Applications/Zen.app"
|
"/Applications/Zen.app"
|
||||||
"/Applications/Ghostty.app"
|
"/Applications/Ghostty.app"
|
||||||
"/System/Applications/Music.app"
|
"/System/Applications/Music.app"
|
||||||
|
"/Applications/Nix Apps/KeePassXC.app"
|
||||||
{ spacer.small = true; }
|
{ spacer.small = true; }
|
||||||
|
|
||||||
"/Applications/Infuse.app"
|
"/Applications/Infuse.app"
|
||||||
|
|
|
||||||
|
|
@ -27,5 +27,6 @@
|
||||||
iina
|
iina
|
||||||
raycast
|
raycast
|
||||||
anki-bin
|
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