feat: Update user configuration in default.nix

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.
This commit is contained in:
Harald Hoyer 2024-07-19 13:28:45 +02:00
parent b14804bbf8
commit 037bb4d88f

View file

@ -8,22 +8,23 @@
username = "harald";
homeDirectory = "/Users/${config.home.username}";
stateVersion = "23.11"; # Please read the comment before changing.
sessionPath = [ "$HOME/bin" ];
# sessionPath = [ "$HOME/bin" ];
};
metacfg = {
cli-apps = {
bash.enable = true;
fish.enable = true;
neovim.enable = true;
tmux.enable = true;
bat.enable = true;
starship.enable = true;
home-manager.enable = true;
#home-manager.enable = true;
};
tools = {
direnv.enable = true;
alacritty.enable = true;
#alacritty.enable = true;
ssh.enable = true;
git.enable = true;
};