Files
nixos/modules/home-manager/zsh.nix
T

10 lines
138 B
Nix

{ config, pkgs, ... }:
{
programs.zsh = {
enable = true;
autosuggestion.enable = true;
initContent = "fastfetch\n";
};
}