nixos/home/Monarch-tux.nix

25 lines
450 B
Nix
Raw Normal View History

2023-04-21 07:28:18 +01:00
{ ... }:
{
imports = [
2023-04-21 07:35:58 +01:00
./env/bash.nix
./env/zsh.nix
2023-04-21 07:28:18 +01:00
./tui
./gui/wezterm.nix
2023-04-21 07:35:58 +01:00
./gui/neovide.nix
2023-04-21 07:28:18 +01:00
];
# 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)"
'';
2023-04-21 07:28:18 +01:00
home.stateVersion = "22.11";
}