switch from bitwarden to keepassxc
This commit is contained in:
parent
5f26ed0524
commit
2623df1e00
4 changed files with 21 additions and 5 deletions
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 = "VveqhLfcw2WyYsD+3jTaqKp4d1EYX8pPL++hyGpsz1w=";
|
||||
})
|
||||
];
|
||||
});
|
||||
in {
|
||||
home.packages = [ keepassxc ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue