summaryrefslogtreecommitdiff
path: root/nixes/startx
diff options
context:
space:
mode:
Diffstat (limited to 'nixes/startx')
-rw-r--r--nixes/startx/startx-xdg.patch4
-rw-r--r--nixes/startx/startx.nix10
2 files changed, 0 insertions, 14 deletions
diff --git a/nixes/startx/startx-xdg.patch b/nixes/startx/startx-xdg.patch
deleted file mode 100644
index 5aa3fd9..0000000
--- a/nixes/startx/startx-xdg.patch
+++ /dev/null
@@ -1,4 +0,0 @@
-175c175
-< xserverauthfile=$HOME/.serverauth.$$
----
-> xserverauthfile="${XAUTHORITY:-$HOME/.Xauthority}"
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
- ];
- });
-}