Harald Hoyer
037bb4d88f
This commit comments out several configurations in the user's default.nix on harald@mpro. Namely, it disables the sessionPath, home-manager, and alacritty, establishing a new setup for future use.
34 lines
586 B
Nix
34 lines
586 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;
|
|
};
|
|
};
|
|
}
|
|
|