diff --git a/configs/default.nix b/configs/default.nix index 59099d0..466cba3 100644 --- a/configs/default.nix +++ b/configs/default.nix @@ -30,6 +30,12 @@ in { tocharian-font = pkgs.callPackage {}; iolanguage = pkgs.callPackage {}; ix = pkgs.callPackage {}; + rofi-pass = pkgs.rofi-pass.overrideAttrs (final: previous: { + patches = [ + # password store androi + + ]; + }); }; }; overlays = [ diff --git a/packages/rofi-pass.patch b/packages/rofi-pass.patch new file mode 100644 index 0000000..8bd2e9c --- /dev/null +++ b/packages/rofi-pass.patch @@ -0,0 +1,12 @@ +diff --git a/rofi-pass b/rofi-pass +index 48928db..13682a5 100755 +--- a/rofi-pass ++++ b/rofi-pass +@@ -15,7 +15,7 @@ _image_viewer () { + + # We expect to find these fields in pass(1)'s output + URL_field='url' +-USERNAME_field='user' ++USERNAME_field='login' + AUTOTYPE_field='autotype' + OTPmethod_field='otp_method'