9 lines
140 B
Nix
9 lines
140 B
Nix
|
{ inputs }:
|
||
|
|
||
|
final: prev: {
|
||
|
picom = prev.picom.overrideAttrs (old: {
|
||
|
version = "unstable-2021-08-04";
|
||
|
src = inputs.picom;
|
||
|
});
|
||
|
}
|