nixcfg/homes/x86_64-darwin/harald@mpro/default.nix
Harald Hoyer 5e2d3a6ce4
add mpro
Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
2024-03-12 00:24:28 +01:00

32 lines
583 B
Nix

{ lib
, pkgs
, config
, ...
}:
{
home = {
username = "harald";
homeDirectory = "/Users/${config.home.username}";
stateVersion = "23.11"; # Please read the comment before changing.
sessionPath = [ "$HOME/bin" ];
};
plusultra = {
cli-apps = {
bash.enable = true;
fish.enable = true;
neovim.enable = true;
tmux.enable = true;
bat.enable = true;
starship.enable = true;
home-manager.enable = true;
};
tools = {
direnv.enable = true;
alacritty.enable = true;
ssh.enable = true;
};
};
}