vscode build task

This commit is contained in:
Sridhar Ratnakumar 2021-04-16 15:08:05 -04:00
parent efd96e604c
commit 666d605e22

19
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,19 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build System",
"type": "shell",
// TODO: Run in tmux (for those cases which kills X server)
"command": "sudo",
"args": ["nixos-rebuild", "switch"],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}