{ pkgs, ... }: { imports = [ ./git/personal.nix ./env/zsh.nix ./env/bat.nix ./env/direnv.nix ./env/keychain.nix ./env/ssh.nix ./env/starship.nix ./terminal/wezterm.nix ./tui/neovim.nix ./tui/lazygit.nix ]; # Home Manager needs a bit of information about you and the # paths it should manage. home.username = "tux"; home.homeDirectory = "/Users/tux"; home.stateVersion = "22.11"; home.packages = with pkgs; [ silver-searcher ]; programs.zsh.envExtra = '' eval "$(/opt/homebrew/bin/brew shellenv)" ''; }