Files
stubbfelnix/programs/zsh.nix
2025-12-09 18:24:58 +01:00

13 lines
201 B
Nix

{ config, pkgs, ... }:
{
programs.zsh = {
enable = true;
autosuggestions.enable = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
};
}