configs/workstation/zsh.nix

16 lines
296 B
Nix
Raw Normal View History

2024-07-02 15:02:33 +02:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs;
[
zsh
zsh-completions
nix-zsh-completions
starship
direnv
];
programs.zsh.enable = true;
programs.zsh.syntaxHighlighting.enable = true;
programs.zsh.autosuggestions.enable = true;
}