2021-06-04 16:16:16 +07:00
|
|
|
self: super: {
|
|
|
|
|
xorg = super.xorg // {
|
|
|
|
|
xinit = super.xorg.xinit.overrideAttrs(o: {
|
|
|
|
|
# Some info:
|
|
|
|
|
# - Make startx use $XAUTHORITY as server auth files instead of .serverauth.$$
|
|
|
|
|
# - Make startx respect $XINITRC and $XSERVERRC
|
2021-06-26 23:48:15 +07:00
|
|
|
patches = o.patches ++ [ ./patches/startx.patch ];
|
2021-06-04 16:16:16 +07:00
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
}
|