nixos/nixos/home/Monarch-tux.nix
Evie Litherland-Smith 6193f366de Start another restructure
Move home config back into nixos, too annoying to
maintain as separate when not needed

Regoup nix expressions logically, make use of defaults and
create GUI collections to minimise code needed for common
machine definitions
2023-04-25 14:27:28 +01:00

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)"
'';
}