From 1fd92fcaf3aadea1e9509f859340f57100218c41 Mon Sep 17 00:00:00 2001 From: "Simen A. W. Olsen" Date: Sat, 21 Mar 2026 13:49:10 +0100 Subject: refactor: consolidate dotfiles into declarative Nix modules - Remove nvim git submodule, use flake input instead - Inline all shell configurations into Nix modules - Remove legacy bootstrap.sh and macos/macos script - Add NixOS system configuration support - Update documentation with platform-specific setup - Add claude-code to macOS Homebrew - Remove stow-based dotfile management approach --- zsh/.zshenv | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 zsh/.zshenv (limited to 'zsh/.zshenv') diff --git a/zsh/.zshenv b/zsh/.zshenv deleted file mode 100755 index 563696f..0000000 --- a/zsh/.zshenv +++ /dev/null @@ -1,24 +0,0 @@ -##!/bin/zsh -# -# .zshenv - Zsh environment file, loaded always. -# - -# Set ZDOTDIR if you want to re-home Zsh. -export XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-$HOME/.config} -export XDG_DATA_HOME=${XDG_DATA_HOME:-$HOME/.local/share} -export XDG_CACHE_HOME=${XDG_CACHE_HOME:-$HOME/.cache} -export ZDOTDIR=${ZDOTDIR:-$XDG_CONFIG_HOME/zsh} - -# Ensure path arrays do not contain duplicates. -typeset -gU path fpath - -# Set the list of directories that zsh searches for commands. -path=( - $HOME/{,s}bin(N) - $HOME/.local/{,s}bin(N) - /opt/{homebrew,local}/{,s}bin(N) - /usr/local/{,s}bin(N) - $path -) -eval "$(/opt/homebrew/bin/brew shellenv)" -. "$HOME/.cargo/env" -- cgit v1.2.3