summaryrefslogtreecommitdiff
path: root/nixes/startx/startx.nix
blob: 591f42648dbbe6e19eedd3e007483984aacbd971 (plain)
1
2
3
4
5
6
7
8
9
10
#{ pkgs ? import <nixpkgs> { overlays = [ (import /path/to/my-overlay.nix) ]; } }:

final: prev: {
	xorg.xinit = prev.xorg.xinit.overrideAttrs (old: {
		# Apply the patch
		patches = old.patches or [] ++ [
			./startx-xdg.patch
		];
	});
}