RedNix-Base/Modules/zsh.nix

8 lines
184 B
Nix
Raw Normal View History

2024-10-18 15:47:06 +02:00
{ config, lib, pkgs, ... }:
{
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
environment.shells = with pkgs; [ zsh ];
programs.zsh.autosuggestions.enable = true;
}