···1818 # The home.packages option allows you to install Nix packages into your
1919 # environment.
2020 home.packages = [
2121- # # Adds the 'hello' command to your environment. It prints a friendly
2222- # # "Hello, world!" when run.
2323- pkgs.hello
2424-2521 # # It is sometimes useful to fine-tune packages, for example, by applying
2622 # # overrides. You can do that directly here, just don't forget the
2723 # # parentheses. Maybe you want to install Nerd Fonts with a limited number of
···67636864 # Let Home Manager install and manage itself.
6965 programs.home-manager.enable = true;
6666+6767+ programs.zsh = {
6868+ enable = true;
6969+ enableAutosuggestions = true;
7070+ enableCompletion = true;
7171+ };
7072}