nixos/home/Monarch-tux.nix

18 lines
344 B
Nix

{ ... }:
{
imports = [
./env
./env/git/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";
home.stateVersion = "22.11";
programs.zsh.envExtra = ''
eval "$(/opt/homebrew/bin/brew shellenv)"
'';
}