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

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