homebrew pinning

This commit is contained in:
atagen 2026-05-20 16:01:46 +10:00
parent 4921973b9a
commit 480c556d32
45 changed files with 1401 additions and 2219 deletions

View file

@ -1,8 +1,9 @@
{
pkgs,
lib,
config,
mkWrappers,
inputs,
scope,
...
}:
let
@ -60,16 +61,19 @@ let
tab-width=180
tab-padding=10
margin=8
[key-bindings]
tab-overview=Control+Alt+Tab
'';
footPatched = pkgs.foot.overrideAttrs (old: {
patches = (old.patches or [ ]) ++ [ ./foot-tabs.patch ];
});
toesPkg = pkgs.foot.overrideAttrs {
src = inputs.toes;
};
foot = wrap {
toes = wrap {
name = "foot";
pkg = footPatched;
pkg = toesPkg;
args = [ "--config=${footConfig}" ];
};
in
scope "apps.terminal" foot
scope "apps.terminal" toes