Evie Litherland-Smith
95100163c3
Restore wezterm configs and link using nix. Add homebrew support to zsh for Monarch.
25 lines
450 B
Nix
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";
|
|
}
|