diff options
author | Tim Keller <tjkeller.xyz> | 2024-10-02 22:56:23 -0500 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2024-10-02 22:56:23 -0500 |
commit | 9aad420411b703278ac555858dc60f14f8f156bc (patch) | |
tree | 65194ee14afdff7f7953edc518fb710247a25e39 /nixes/startx | |
parent | 2720ea4a2988b449de8aeedb4e173eb1f0900719 (diff) | |
download | nixos-9aad420411b703278ac555858dc60f14f8f156bc.tar.xz nixos-9aad420411b703278ac555858dc60f14f8f156bc.zip |
rm old nixes folder
Diffstat (limited to 'nixes/startx')
-rw-r--r-- | nixes/startx/startx-xdg.patch | 4 | ||||
-rw-r--r-- | nixes/startx/startx.nix | 10 |
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 - ]; - }); -} |