Files
setup-machines/home-manager/zsh/zsh.nix

9 lines
105 B
Nix
Raw Normal View History

2025-02-27 17:39:57 +01:00
{ pkgs, inputs, ... }:
{
programs.zsh = {
enable = true;
2025-02-27 18:42:07 +01:00
autosuggestion.enable = true;
2025-02-27 17:39:57 +01:00
};
}