From f6d9b71b603e6510cf6d0e2ba1b8f474090f5f58 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Wed, 1 Nov 2023 11:51:47 +0100 Subject: [PATCH] add shell.nix and vscode settings --- .vscode/settings.json | 3 +++ shell.nix | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..fdccc76 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "nixEnvSelector.nixFile": "${workspaceRoot}/shell.nix" +} \ No newline at end of file diff --git a/shell.nix b/shell.nix index e69de29..7f6d00b 100644 --- a/shell.nix +++ b/shell.nix @@ -0,0 +1,5 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + # nativeBuildInputs is usually what you want -- tools you need to run + nativeBuildInputs = with pkgs.buildPackages; [ ]; +}