Compare commits
2 commits
ba31c89a10
...
b7b2187440
| Author | SHA1 | Date | |
|---|---|---|---|
| b7b2187440 | |||
| 605b20d67c |
4 changed files with 19 additions and 4 deletions
|
|
@ -28,8 +28,8 @@
|
||||||
./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/applications/1password.nix
|
|
||||||
./modules/services/archiveteam-warrior.nix
|
./modules/services/archiveteam-warrior.nix
|
||||||
./modules/services/linkding.nix
|
./modules/services/linkding.nix
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
"/Applications/Zen.app"
|
"/Applications/Zen.app"
|
||||||
"/Applications/Ghostty.app"
|
"/Applications/Ghostty.app"
|
||||||
"/System/Applications/Music.app"
|
"/System/Applications/Music.app"
|
||||||
"/Applications/1Password.app"
|
"/Applications/Nix Apps/KeePassXC.app"
|
||||||
{ spacer.small = true; }
|
{ spacer.small = true; }
|
||||||
|
|
||||||
"/Applications/Infuse.app"
|
"/Applications/Infuse.app"
|
||||||
|
|
@ -46,8 +46,6 @@
|
||||||
"blender"
|
"blender"
|
||||||
"obs"
|
"obs"
|
||||||
"gimp"
|
"gimp"
|
||||||
"1password"
|
|
||||||
"1password-cli"
|
|
||||||
"signal"
|
"signal"
|
||||||
"soulseek"
|
"soulseek"
|
||||||
"whatsapp"
|
"whatsapp"
|
||||||
|
|
|
||||||
|
|
@ -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