tui/shell.nix

20 lines
251 B
Nix
Raw Normal View History

2026-08-21 21:34:02 +02:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
# PHP and tools
php84
php84Packages.composer
# Container tools
podman
podman-compose
# Utilities
git
curl
gnumake
];
}