Harald Hoyer
7ae6907c2d
This commit shifts the Alacritty terminal emulator from "tools" within the user-level configuration to "systemPackages" under the base services configuration. This change allows global access to Alacritty across the system.
33 lines
554 B
Nix
33 lines
554 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;
|
|
};
|
|
};
|
|
}
|
|
|