added bash options

This commit is contained in:
Elias Gasparis 2025-06-19 11:03:00 +08:00
parent 15677e4eb8
commit 05cf81b10b

View file

@ -1,6 +1,14 @@
{ pkgs, config, lib, ... }:
{
# Bash usability & speed settings
# Auto-complete for bash commands and flags (press Tab!)
programs.bash.completion.enable = true; # Optional
# Adds color to your 'ls' command (makes folders, files, etc. colorful)
programs.bash.enableLsColors = true; # Optional
# Lets you search for commands from packages you haven't installed yet (via `nix-index`)
programs.nix-index.enableBashIntegration = true; # Optional
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [