advent-of-code-2021/shell.nix

8 lines
89 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.rustup
];
}