Your one-stop-cake-shop for everything Freshly Baked has to offer

fix(pm/server): disable zsh new user welcome

We can do this by redefining the function zsh calls to be a no-op...
I haven't decided if we want this on user machines, but we definitely
don't want it on servers

Refs: https://discourse.nixos.org/t/zsh-configuration-for-new-users-keeps-recurring

Changed files
+7
packetmix
systems
server
+7
packetmix/systems/server/zsh.nix
···
··· 1 + # SPDX-FileCopyrightText: 2025 FreshlyBakedCake 2 + # 3 + # SPDX-License-Identifier: MIT 4 + 5 + { 6 + programs.zsh.shellInit = "zsh-newuser-install() { true }"; 7 + }