17 lines
340 B
Nix
17 lines
340 B
Nix
{ ... }:
|
|
{
|
|
imports = [ ../default.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)"
|
|
'';
|
|
}
|