diff options
Diffstat (limited to 'nixes/startx/startx.nix')
-rw-r--r-- | nixes/startx/startx.nix | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/nixes/startx/startx.nix b/nixes/startx/startx.nix deleted file mode 100644 index 591f426..0000000 --- a/nixes/startx/startx.nix +++ /dev/null @@ -1,10 +0,0 @@ -#{ 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 - ]; - }); -} |