nixcfg/homes/x86_64-darwin/harald@mpro/default.nix
Harald Hoyer c42a15d235 feat: Enable alacritty in default.nix
Alacritty was previously commented out in default.nix configuration. This update has ensured it is now enabled.
2024-07-19 13:37:17 +02:00

34 lines
585 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;
alacritty.enable = true;
ssh.enable = true;
git.enable = true;
};
};
}