summaryrefslogtreecommitdiff
path: root/nixes/startx
diff options
context:
space:
mode:
authorTim Keller <tjkeller.xyz>2024-10-02 22:56:23 -0500
committerTim Keller <tjkeller.xyz>2024-10-02 22:56:23 -0500
commit9aad420411b703278ac555858dc60f14f8f156bc (patch)
tree65194ee14afdff7f7953edc518fb710247a25e39 /nixes/startx
parent2720ea4a2988b449de8aeedb4e173eb1f0900719 (diff)
downloadnixos-9aad420411b703278ac555858dc60f14f8f156bc.tar.xz
nixos-9aad420411b703278ac555858dc60f14f8f156bc.zip
rm old nixes folder
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
- ];
- });
-}