nixos-config/.vscode/tasks.json
Sridhar Ratnakumar 666d605e22 vscode build task
2021-04-16 15:08:05 -04:00

19 lines
No EOL
539 B
JSON

{
// 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
}
}
]
}