about summary refs log tree commit diff
path: root/configs/shared/.emacs.d/snippets/nix-mode/shell-nix
diff options
context:
space:
mode:
Diffstat (limited to 'configs/shared/.emacs.d/snippets/nix-mode/shell-nix')
-rw-r--r--configs/shared/.emacs.d/snippets/nix-mode/shell-nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/configs/shared/.emacs.d/snippets/nix-mode/shell-nix b/configs/shared/.emacs.d/snippets/nix-mode/shell-nix
new file mode 100644
index 0000000000..4c308bb51b
--- /dev/null
+++ b/configs/shared/.emacs.d/snippets/nix-mode/shell-nix
@@ -0,0 +1,12 @@
+# -*- mode: snippet -*-
+# name: shell.nix boilerplate
+# key: import
+# --
+with import <nixpkgs> {};
+
+stdenv.mkDerivation {
+  name = "$1";
+  buildInputs = [
+    $2
+  ];
+}
\ No newline at end of file