From d3f584e189c24b4b4d1e016cc7f86476a47353e3 Mon Sep 17 00:00:00 2001 From: Christian Harke Date: Tue, 17 Oct 2023 23:22:05 +0200 Subject: [PATCH] Remove duplicate zsh config --- home/users/christian/shell/default.nix | 1 - home/users/christian/shell/zsh.nix | 47 -------------------------- 2 files changed, 48 deletions(-) delete mode 100644 home/users/christian/shell/zsh.nix diff --git a/home/users/christian/shell/default.nix b/home/users/christian/shell/default.nix index 823dd748..2e35f7d6 100644 --- a/home/users/christian/shell/default.nix +++ b/home/users/christian/shell/default.nix @@ -68,7 +68,6 @@ in programs = { ssh = import ./ssh.nix; - zsh = import ./zsh.nix; bat.enable = true; exa.enable = true; diff --git a/home/users/christian/shell/zsh.nix b/home/users/christian/shell/zsh.nix deleted file mode 100644 index 3a2e74a2..00000000 --- a/home/users/christian/shell/zsh.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ - enable = true; - enableAutosuggestions = true; - enableCompletion = true; - enableSyntaxHighlighting = true; - autocd = true; - dotDir = ".config/zsh"; - dirHashes = { - bb = "/mnt/bluecare/bluecare"; - bh = "/mnt/bluecare/home"; - bt = "/mnt/bluecare/transfer"; - d = "$HOME/Documents"; - dl = "$HOME/Downloads"; - hh = "/mnt/home/home"; - hm = "/mnt/home/music"; - hp = "/mnt/home/photo"; - ht = "/mnt/home/public"; - hv = "/mnt/home/video"; - p = "$HOME/Pictures"; - usb = "/run/media/chr"; - v = "$HOME/Videos"; - }; - history = - let - historySize = 1000000; - in - { - expireDuplicatesFirst = true; - extended = true; - ignoreDups = true; - ignoreSpace = true; - path = "$ZDOTDIR/.zsh_history"; - save = historySize; - share = true; - size = historySize; - }; - shellGlobalAliases = { - "..." = "../.."; - "...." = "../../.."; - "....." = "../../../.."; - "......" = "../../../../.."; - "......." = "../../../../../.."; - "........" = "../../../../../../.."; - G = "| grep"; - UUID = "$(uuidgen | tr -d \\n)"; - }; -}