diff --git a/home/dot_bash_profile b/home/dot_bash_profile index 442fa84a..43b15f5d 100644 --- a/home/dot_bash_profile +++ b/home/dot_bash_profile @@ -16,15 +16,6 @@ shopt -s histappend; # Autocorrect typos in path names when using `cd` shopt -s cdspell; -# Setup thefuck -eval "$(thefuck --alias)" - -# Setup direnv -eval "$(direnv hook bash)" - -# Setup zoxide -eval "$(zoxide init bash)" - # Enable some Bash 4 features when possible: # * `autocd`, e.g. `**/qux` will enter `./foo/bar/baz/qux` # * Recursive globbing, e.g. `echo **/*.txt` diff --git a/provision/hosts/default/default.nix b/provision/hosts/default/default.nix index 91659a5d..a224d2b0 100644 --- a/provision/hosts/default/default.nix +++ b/provision/hosts/default/default.nix @@ -38,12 +38,6 @@ home.homeDirectory = "/home/${user}"; programs.home-manager.enable = true; - programs.direnv = { - enable = true; - enableBashIntegration = true; - nix-direnv.enable = true; - }; - # Did you read the comment? home.stateVersion = "23.11"; }; diff --git a/provision/modules/base/terminal.nix b/provision/modules/base/terminal.nix index d38d52f8..3fde84be 100644 --- a/provision/modules/base/terminal.nix +++ b/provision/modules/base/terminal.nix @@ -17,7 +17,6 @@ vim # Text editor that is highly configurable and widely used, especially in the Unix environment ripgrep # Line-oriented search tool that recursively searches directories for a regex pattern sesh # Smart session manager for the terminal - zoxide # Fast cd command that learns your habits fzf # Command-line fuzzy finder for Unix-like operating systems ]; } diff --git a/provision/modules/devel/programming.nix b/provision/modules/devel/programming.nix index 83a86d65..3ca48281 100644 --- a/provision/modules/devel/programming.nix +++ b/provision/modules/devel/programming.nix @@ -5,7 +5,6 @@ in { options.modules.devel.programming.enable = lib.mkEnableOption "programming"; config = lib.mkIf cfg.enable { environment.systemPackages = with pkgs; [ - thefuck # Corrects errors in previous console commands nodejs # JavaScript runtime built on Chrome's V8 JavaScript engine cargo # Package manager and build system for Rust docker-compose # Docker CLI plugin to define and run multi-container applications with Docker