{ config, pkgs, pkgs-unstable, ... }: { environment.systemPackages = with pkgs; [ rustup go python313 nodejs_22 # CLI tools docker-compose gnumake jq just sqlite-interactive tokei fastmod license-generator (writeShellScriptBin "deploy-dir" (builtins.readFile ./scripts/deploy-dir)) gcc # rustc fails if cc linker isn't found chromium # FUTURE: Check if Linux kernel of NixOS 25.05 still has this amdgpu bug. (pkgs.writeShellScriptBin "zed" '' export ZED_PATH_SAMPLE_COUNT=0 # workaround for https://github.com/zed-industries/zed/issues/26143 exec ${pkgs-unstable.zed-editor}/bin/zeditor "$@" '') vscodium # I'm installing extensions via my install-imperative script. platformio ]; virtualisation.podman = { enable = true; dockerSocket.enable = true; }; }