RedNix-Base/Modules/zsh.nix

8 lines
184 B
Nix

{ config, lib, pkgs, ... }:
{
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
environment.shells = with pkgs; [ zsh ];
programs.zsh.autosuggestions.enable = true;
}