remove direnv thefuck and zoxide

This commit is contained in:
Tyler Starr 2025-03-12 22:24:53 -07:00
parent b033a752ae
commit ae73fd9cde
4 changed files with 0 additions and 17 deletions

View File

@ -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`

View File

@ -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";
};

View File

@ -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
];
}

View File

@ -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