dotfiles/nvim/own-snippets/nix.snippets

20 lines
263 B
Plaintext
Raw Normal View History

2022-01-11 14:21:04 +00:00
snippet shell "Nix shell template" b
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
${1}
];
}
endsnippet
snippet mkDerivation "Shorthand for stdenv.mkDerivation" b
{ stdenv, lib, $1 }:
stdenv.mkDerivation rec {
$2
}
endsnippet