
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.programs.bash;
|
|
in
|
|
{
|
|
options.programs.bash.completion = {
|
|
enable = lib.mkEnableOption "Bash completion for all interactive bash shells" // {
|
|
default = true;
|
|
};
|
|
|
|
package = lib.mkPackageOption pkgs "bash-completion" { };
|
|
};
|
|
|
|
imports = [
|
|
(lib.mkRenamedOptionModule
|
|
[ "programs" "bash" "enableCompletion" ]
|
|
[ "programs" "bash" "completion" "enable" ]
|
|
)
|
|
];
|
|
|
|
config = lib.mkIf cfg.completion.enable {
|
|
programs.bash.promptPluginInit = ''
|
|
# Check whether we're running a version of Bash that has support for
|
|
# programmable completion. If we do, enable all modules installed in
|
|
# the system and user profile in obsolete /etc/bash_completion.d/
|
|
# directories. Bash loads completions in all
|
|
# $XDG_DATA_DIRS/bash-completion/completions/
|
|
# on demand, so they do not need to be sourced here.
|
|
if shopt -q progcomp &>/dev/null; then
|
|
. "${cfg.completion.package}/etc/profile.d/bash_completion.sh"
|
|
nullglobStatus=$(shopt -p nullglob)
|
|
shopt -s nullglob
|
|
for p in $NIX_PROFILES; do
|
|
for m in "$p/etc/bash_completion.d/"*; do
|
|
. "$m"
|
|
done
|
|
done
|
|
eval "$nullglobStatus"
|
|
unset nullglobStatus p m
|
|
fi
|
|
'';
|
|
};
|
|
}
|