From 4f169eeb8489cec3254cfb91d0c0cf898ddc82e8 Mon Sep 17 00:00:00 2001 From: xunuwu Date: Sat, 16 Mar 2024 08:33:31 +0100 Subject: [PATCH] cleanup --- home/terminal/shell/zsh.nix | 3 --- system/desktop/x11.nix | 5 ----- 2 files changed, 8 deletions(-) delete mode 100644 system/desktop/x11.nix diff --git a/home/terminal/shell/zsh.nix b/home/terminal/shell/zsh.nix index 58315bf..54ee433 100644 --- a/home/terminal/shell/zsh.nix +++ b/home/terminal/shell/zsh.nix @@ -29,9 +29,6 @@ zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}' # Case insensitive completion - bindkey '^[[Z' reverse-menu-complete # shift-tab in completion menu - - ## MISC ## # Show completion categories zstyle ':completion:*:*:*:*:descriptions' format '%F{magenta}<-%d->%f' diff --git a/system/desktop/x11.nix b/system/desktop/x11.nix deleted file mode 100644 index 37a13b9..0000000 --- a/system/desktop/x11.nix +++ /dev/null @@ -1,5 +0,0 @@ -{pkgs, ...}: { - environment.systemPackages = with pkgs; [ - xclip - ]; -}