Compare commits

...

2 commits

Author SHA1 Message Date
b7b2187440
keepassxc: init 2025-11-07 22:57:56 +11:00
605b20d67c
1password: remove from machines 2025-11-07 20:01:53 +11:00
4 changed files with 19 additions and 4 deletions

View file

@ -28,8 +28,8 @@
./modules/browser/firefox.nix
./modules/browser/chromium.nix
./modules/applications/default.nix
./modules/applications/keepassxc.nix
./modules/games/linux.nix
./modules/applications/1password.nix
./modules/services/archiveteam-warrior.nix
./modules/services/linkding.nix

View file

@ -8,7 +8,7 @@
"/Applications/Zen.app"
"/Applications/Ghostty.app"
"/System/Applications/Music.app"
"/Applications/1Password.app"
"/Applications/Nix Apps/KeePassXC.app"
{ spacer.small = true; }
"/Applications/Infuse.app"
@ -46,8 +46,6 @@
"blender"
"obs"
"gimp"
"1password"
"1password-cli"
"signal"
"soulseek"
"whatsapp"

View file

@ -27,5 +27,6 @@
iina
raycast
anki-bin
keepassxc
]);
}

View 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
];
}