don't overlay garage and add some stable packages

This commit is contained in:
cy 2025-02-09 14:32:46 -05:00
parent 3f68b25133
commit 5e877bd3d0
Signed by: cy
SSH key fingerprint: SHA256:o/geVWV4om1QhUSkKvDQeW/eAihwnjyXkqMwrVdbuts
4 changed files with 35 additions and 26 deletions

View file

@ -1,4 +1,4 @@
let
{ inputs }: let
overlays = [
./conduwuit
./attic
@ -7,3 +7,18 @@ let
importedOverlays = map (m: import m) overlays;
in
importedOverlays
++
[
(final: prev:
let
pkgFrom = flake: pkg: flake.legacyPackages.${prev.system}.${pkg};
stable = inputs.nixpkgs-stable;
in
{
bitwarden-cli = pkgFrom stable "bitwarden-cli";
roundcube = pkgFrom stable "roundcube";
lldb = pkgFrom stable "lldb";
calibre = pkgFrom stable "calibre";
}
)
]