patch bitwarden to disable annoying ssh-agent confirmation and clean dead overlays

This commit is contained in:
cy 2025-03-11 14:52:31 -04:00
parent 826146df9d
commit f4f0691647
Signed by: cy
SSH key fingerprint: SHA256:o/geVWV4om1QhUSkKvDQeW/eAihwnjyXkqMwrVdbuts
5 changed files with 44 additions and 75 deletions

View file

@ -0,0 +1,7 @@
final: prev: {
bitwarden-desktop = prev.bitwarden-desktop.overrideAttrs (finalAttrs: prevAttrs: {
patches = prevAttrs.patches ++ [
./ssh-agent-no-confirm.patch
];
});
}