{ config, pkgs, ... }: { environment.sessionVariables = { # Tell .zshrc to source zshrc-dev.sh. MYNIX_DEV = "true"; }; environment.systemPackages = with pkgs; [ rustup python313 nodejs_22 # CLI tools docker-compose gnumake jq just sqlite-interactive tokei gcc # rustc fails if cc linker isn't found chromium vscodium # I'm installing extensions via my install-imperative script. ]; virtualisation.podman = { enable = true; dockerSocket.enable = true; }; }