# -*- mode: snippet -*-
# name: shell
# key: __shell
# --
{ pkgs ? import <nixpkgs> {}, ... }:

pkgs.mkShell {
  packages = with pkgs; [
    $1
  ];
}