added bash options
This commit is contained in:
parent
15677e4eb8
commit
05cf81b10b
1 changed files with 8 additions and 0 deletions
|
@ -1,6 +1,14 @@
|
||||||
{ pkgs, config, lib, ... }:
|
{ 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:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue