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

@ -3,6 +3,7 @@ let
overlays = [
./attic
./zipline
./bitwarden
];
importedOverlays = map (m: import m) overlays;
in
@ -12,12 +13,11 @@ importedOverlays
final: prev:
let
nixpkgsFrom = flake: pkg: flake.legacyPackages.${prev.system}.${pkg};
pkgFrom = flake: pkgFrom' flake "default";
pkgFrom' = flake: pkg: flake.packages.${prev.system}.${pkg};
pkgFrom = flake: pkg: flake.packages.${prev.system}.${pkg};
in
{
conduwuit =
pkgFrom' inputs.conduwuit "static-x86_64-linux-musl-all-features-x86_64-haswell-optimised";
pkgFrom inputs.conduwuit "static-x86_64-linux-musl-all-features-x86_64-haswell-optimised";
pixelflasher = nixpkgsFrom inputs.pixelflasher "pixelflasher";
}
)