mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 12:40:44 +03:00
10 lines
168 B
Nix
10 lines
168 B
Nix
{ inputs, ... }:
|
|
|
|
self: super: {
|
|
yazi = super.yazi.overrideDerivation (old: {
|
|
passthru = (old.passthru or { }) // {
|
|
configHome = configHome;
|
|
};
|
|
});
|
|
}
|