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