From 037bb4d88f6cb4b4c1f755be8d4dd5fd675d38a1 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 19 Jul 2024 13:28:45 +0200 Subject: [PATCH] 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. --- homes/x86_64-darwin/harald@mpro/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/homes/x86_64-darwin/harald@mpro/default.nix b/homes/x86_64-darwin/harald@mpro/default.nix index f7f8d31..5320d12 100644 --- a/homes/x86_64-darwin/harald@mpro/default.nix +++ b/homes/x86_64-darwin/harald@mpro/default.nix @@ -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; };