Files
Mozzarella/src/shell.nix
2025-10-31 21:39:18 -04:00

13 lines
227 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [
];
shellHook = ''
'';
}