Files
2025-09-05 20:49:09 -06:00

11 lines
150 B
Plaintext

# -*- mode: snippet -*-
# name: shell
# key: __shell
# --
{ pkgs ? import <nixpkgs> {}, ... }:
pkgs.mkShell {
packages = with pkgs; [
$1
];
}