add shell.nix and vscode settings

This commit is contained in:
Daniel Langbein 2023-11-01 11:51:47 +01:00
parent 13b421bfbc
commit f6d9b71b60
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
2 changed files with 8 additions and 0 deletions

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"nixEnvSelector.nixFile": "${workspaceRoot}/shell.nix"
}

View File

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [ ];
}