nixcfg/homes/x86_64-darwin/harald@mpro/default.nix
Harald Hoyer 900f95169f nix fmt
Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
2024-11-19 10:31:29 +01:00

33 lines
558 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" ];
};
metacfg = {
cli-apps = {
bash.enable = true;
fish.enable = true;
neovim.enable = true;
bat.enable = true;
starship.enable = true;
#home-manager.enable = true;
};
tools = {
direnv.enable = true;
ssh.enable = true;
git.enable = true;
};
};
}