summary refs log tree commit diff
path: root/nixos/modules/programs
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2014-12-08 12:05:56 +0100
committerDomen Kožar <domen@dev.si>2014-12-08 12:06:02 +0100
commitee8e15fe76a235ae3583d4e8cb4bb370f28c5eae (patch)
tree5a003af87da055b6ddf138c39e166a429b5c024a /nixos/modules/programs
parent3ce89ba0027d62084983bc8725cc65432660f345 (diff)
downloadnixlib-ee8e15fe76a235ae3583d4e8cb4bb370f28c5eae.tar
nixlib-ee8e15fe76a235ae3583d4e8cb4bb370f28c5eae.tar.gz
nixlib-ee8e15fe76a235ae3583d4e8cb4bb370f28c5eae.tar.bz2
nixlib-ee8e15fe76a235ae3583d4e8cb4bb370f28c5eae.tar.lz
nixlib-ee8e15fe76a235ae3583d4e8cb4bb370f28c5eae.tar.xz
nixlib-ee8e15fe76a235ae3583d4e8cb4bb370f28c5eae.tar.zst
nixlib-ee8e15fe76a235ae3583d4e8cb4bb370f28c5eae.zip
enable bash autocomplete by default
Diffstat (limited to 'nixos/modules/programs')
-rw-r--r--nixos/modules/programs/bash/bash.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/programs/bash/bash.nix b/nixos/modules/programs/bash/bash.nix
index c5c0f9d01215..03899425da5d 100644
--- a/nixos/modules/programs/bash/bash.nix
+++ b/nixos/modules/programs/bash/bash.nix
@@ -105,7 +105,7 @@ in
       };
 
       enableCompletion = mkOption {
-        default = false;
+        default = true;
         description = ''
           Enable Bash completion for all interactive bash shells.
         '';