flakes/overlays/xinit.nix

11 lines
331 B
Nix
Raw Normal View History

2021-06-04 16:16:16 +07:00
self: super: {
xorg = super.xorg // {
2021-07-15 19:57:49 +07:00
xinit = super.xorg.xinit.overrideAttrs (old: {
2021-06-04 16:16:16 +07:00
# Some info:
# - Make startx use $XAUTHORITY as server auth files instead of .serverauth.$$
# - Make startx respect $XINITRC and $XSERVERRC
2023-08-24 21:10:19 +07:00
patches = (old.patches or []) ++ [ ./patches/startx.patch ];
2021-06-04 16:16:16 +07:00
});
};
}