switch from bitwarden to keepassxc
This commit is contained in:
parent
5f26ed0524
commit
ac00b175c9
modules/user
|
@ -38,6 +38,7 @@
|
|||
programs.ssh = {
|
||||
enableAskPassword = true;
|
||||
askPassword = lib.getExe pkgs.lxqt.lxqt-openssh-askpass;
|
||||
startAgent = true;
|
||||
};
|
||||
|
||||
systemd = {
|
||||
|
@ -103,6 +104,7 @@
|
|||
./modules/dolphin
|
||||
./modules/firefox
|
||||
./modules/element.nix
|
||||
./modules/keepassxc
|
||||
./dev-support.nix
|
||||
];
|
||||
|
||||
|
@ -117,7 +119,6 @@
|
|||
curl
|
||||
cantata
|
||||
logseq
|
||||
bitwarden
|
||||
lxqt.pavucontrol-qt
|
||||
helvum
|
||||
htop
|
||||
|
|
|
@ -220,7 +220,7 @@ in {
|
|||
settings = modules.general;
|
||||
|
||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; with extra-addons; [
|
||||
bitwarden
|
||||
keepassxc-browser
|
||||
darkreader
|
||||
github-reposize
|
||||
sidebery
|
||||
|
@ -251,7 +251,7 @@ in {
|
|||
settings = modules.trusted;
|
||||
|
||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; with extra-addons; [
|
||||
bitwarden
|
||||
keepassxc-browser
|
||||
darkreader
|
||||
github-reposize
|
||||
sidebery
|
||||
|
@ -268,7 +268,7 @@ in {
|
|||
settings = modules.trusted;
|
||||
|
||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; with extra-addons; [
|
||||
bitwarden
|
||||
keepassxc-browser
|
||||
darkreader
|
||||
github-reposize
|
||||
sidebery
|
||||
|
|
16
modules/user/modules/keepassxc/default.nix
Normal file
16
modules/user/modules/keepassxc/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ lib, pkgs, ... }: let
|
||||
keepassxc = pkgs.keepassxc.overrideAttrs (prev: {
|
||||
patches = prev.patches ++ [
|
||||
(pkgs.fetchpatch {
|
||||
url = "https://patch-diff.githubusercontent.com/raw/keepassxreboot/keepassxc/pull/11692.patch";
|
||||
sha256 = "S/Oy4dAxER2NkoJQYAdsz5rphn5SW2TH50F//5Xmf+Y=";
|
||||
})
|
||||
(pkgs.fetchpatch {
|
||||
url = "https://patch-diff.githubusercontent.com/raw/keepassxreboot/keepassxc/pull/11693.patch";
|
||||
sha256 = "SV4DX/EzJBjFKvcw0TjTw6V5Xex/d5gc7oFa0JGGOts=";
|
||||
})
|
||||
];
|
||||
});
|
||||
in {
|
||||
home.packages = [ keepassxc ];
|
||||
}
|
Loading…
Reference in a new issue