From 227c0926cf9d31c531d49c068f54fb36c16854cc Mon Sep 17 00:00:00 2001 From: Iavael <905853+iavael@users.noreply.github.com> Date: Thu, 17 Nov 2022 12:35:00 +0000 Subject: [PATCH] Add devcontainer config --- .devcontainer/devcontainer.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000000..18afce75372b --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,12 @@ +{ + "name": "nixpkgs", + "image": "mcr.microsoft.com/devcontainers/universal:2-linux", + "features": { + "ghcr.io/devcontainers/features/nix:1": { + "multiUser": false + } + }, + "remoteEnv": { + "NIXPKGS": "/workspaces/nixpkgs" + } +}