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

This commit is contained in:
cy 2025-03-11 14:48:31 -04:00
parent 826146df9d
commit 4075043e8c
Signed by: cy
SSH key fingerprint: SHA256:o/geVWV4om1QhUSkKvDQeW/eAihwnjyXkqMwrVdbuts
6 changed files with 47 additions and 78 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
];
});
}