nixos/home/Monarch-tux.nix
Evie Litherland-Smith 95100163c3 Add wezterm and configs
Restore wezterm configs and link using nix.
Add homebrew support to zsh for Monarch.
2023-04-22 09:09:23 +01:00

25 lines
450 B
Nix

{ ... }:
{
imports = [
./env/bash.nix
./env/zsh.nix
./tui
./gui/wezterm.nix
./gui/neovide.nix
];
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "tux";
home.homeDirectory = "/Users/tux";
programs.git = {
userEmail = "evie@xenia.me.uk";
};
programs.zsh.envExtra = ''
eval "$(/opt/homebrew/bin/brew shellenv)"
'';
home.stateVersion = "22.11";
}