This commit is contained in:
2026-01-11 13:00:40 +03:00
parent 41a9f7e028
commit e16acfd437
17 changed files with 99 additions and 56 deletions
+6
View File
@@ -0,0 +1,6 @@
{ inputs, ... }@flakeContext:
{
nixosOverlays = {
default = import ./pkgs.nix flakeContext;
};
}
+9
View File
@@ -0,0 +1,9 @@
{ inputs, ... }:
self: super: {
yazi = super.yazi.overrideDerivation (old: {
passthru = (old.passthru or { }) // {
configHome = configHome;
};
});
}