tvl-depot/configs/shared/emacs/.emacs.d/snippets/nix-mode/shell-nix
William Carroll 8b09557f38 Supports additional snippets
- C programming
- HTML
- Nix
2019-01-13 14:25:25 -05:00

12 lines
No EOL
168 B
Text

# -*- mode: snippet -*-
# name: shell.nix boilerplate
# key: import
# --
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "$1";
buildInputs = [
$2
];
}