22 lines
392 B
Nix
22 lines
392 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./env/personal.nix
|
|
./tui
|
|
];
|
|
# 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";
|
|
}
|