{ inputs, pkgs, ... }: let system = pkgs.stdenv.hostPlatform.system; spotifast = inputs.spotifast.packages.${system}.spotifast-app; in { environment = { pathsToLink = [ "/Applications" ]; systemPackages = with pkgs; [ spotifast starship direnv claude helix gnupg wget zstd tack bat lsd xz ]; }; programs = { bash.enable = false; gnupg.agent.enable = true; zsh.enableGlobalCompInit = false; zsh.enableBashCompletion = true; zsh.enable = true; }; }