nixos-config/.vscode/tasks.json

32 lines
482 B
JSON
Raw Normal View History

2022-05-30 15:25:46 +04:00
{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "nixos-rebuild",
"args": [
"build",
"--flake",
"${workspaceFolder}"
],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Switch",
"type": "shell",
"command": "nixos-rebuild",
"args": [
"switch",
"--flake",
"${workspaceFolder}",
"--use-remote-sudo"
],
"problemMatcher": []
}
]
}