nvim/snippets/nix.snippets
2024-06-03 09:13:52 +02:00

8 lines
123 B
Text

snippet shell nix-shell
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
$1
];
}