all repos — nixfiles @ 413cf3b4cc986b2d9a8e775ec5c5ad8ef783ba2c

System and user configuration, managed by nix and home-manager

system/settings/programs/shell.nix (view raw)

1
2
3
4
5
6
7
8
9
{ config, pkgs, ... }:

{ programs.zsh = {
    enable = true;
    promptInit = "";
    enableGlobalCompInit = false;
  };
  programs.bash.enableCompletion = true;
}