8 lines
123 B
Text
8 lines
123 B
Text
|
|
snippet shell nix-shell
|
|
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
$1
|
|
];
|
|
}
|