Skip to content

Instantly share code, notes, and snippets.

@FabHof
Created September 25, 2022 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FabHof/6f8b9fb49a627e5d45cfd86352a27c20 to your computer and use it in GitHub Desktop.
Save FabHof/6f8b9fb49a627e5d45cfd86352a27c20 to your computer and use it in GitHub Desktop.
Vscode settings for Nix Environment Selector and integratd terminal
{
"nixEnvSelector.suggestion": false,
"nixEnvSelector.nixFile": "${workspaceRoot}/shell.nix",
"terminal.integrated.profiles.linux": {
"Nix Shell": {
"path": "nix-shell",
"icon": "terminal-linux",
"color": "terminal.ansiCyan" // give it some color as a reminder this is nix
},
},
"terminal.integrated.defaultProfile.linux": "Nix Shell",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment