nixcfg/homes/x86_64-darwin/harald@mpro/default.nix

32 lines
530 B
Nix
Raw Normal View History

{
lib,
pkgs,
config,
...
2024-03-21 15:00:36 +01:00
}:
{
home = {
username = "harald";
homeDirectory = "/Users/${config.home.username}";
stateVersion = "23.11"; # Please read the comment before changing.
# sessionPath = [ "$HOME/bin" ];
2024-03-21 15:00:36 +01:00
};
metacfg = {
2024-03-21 15:00:36 +01:00
cli-apps = {
bash.enable = true;
fish.enable = true;
neovim.enable = true;
bat.enable = true;
starship.enable = true;
#home-manager.enable = true;
2024-03-21 15:00:36 +01:00
};
2024-03-21 15:00:36 +01:00
tools = {
ssh.enable = true;
git.enable = true;
};
};
}