summary refs log tree commit diff stats
path: root/system/settings/programs/shell.nix
blob: bf8fc3aab4a8ca454d7b9a1a3e7b3e225842a948 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, pkgs, ... }:

{
  programs.zsh = {
    enable = true;
    promptInit = "";
  } // (if pkgs.stdenv.isDarwin then {} else {
    enableGlobalCompInit = false;
  });
  programs.bash.enableCompletion = true;
}