This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run with `nix-shell cuda-shell.nix` | |
{ pkgs ? import <nixpkgs> {} }: | |
pkgs.mkShell { | |
name = "cuda-env-shell"; | |
buildInputs = with pkgs; [ | |
git gitRepo gnupg autoconf curl | |
procps gnumake util-linux m4 gperf unzip | |
cudatoolkit linuxPackages.nvidia_x11 | |
libGLU libGL | |
xorg.libXi xorg.libXmu freeglut |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
nginx: | |
image: nginx:alpine | |
container_name: web | |
depends_on: | |
- php | |
ports: | |
- "80:80" | |
- "443:443" | |
volumes: |
OlderNewer