Commit 80b6513f authored by Bjørn Forsman's avatar Bjørn Forsman
Browse files

nixos: enable bash command completion by default

Because it improves out-of-the-box user experience a lot (IMHO).
(zsh completion is already on by default.)

Remove "programs.bash.enableCompletion = true" from
nixos-generate-config.pl, which feels superflous now.
parent da8fc391
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -585,7 +585,6 @@ $bootLoaderConfig

  # Some programs need SUID wrappers, can be configured further or are
  # started in user sessions.
  # programs.bash.enableCompletion = true;
  # programs.mtr.enable = true;
  # programs.gnupg.agent = { enable = true; enableSSHSupport = true; };

+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ in
      };

      enableCompletion = mkOption {
        default = false;
        default = true;
        description = ''
          Enable Bash completion for all interactive bash shells.
        '';