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

@ -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";
}
)