add vscode build task

This commit is contained in:
sadan 2025-03-12 23:44:55 -04:00
parent 768c19256f
commit 31b8576003
No known key found for this signature in database

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

@ -0,0 +1,24 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Switch NixOS config",
"command": "nh os switch",
"type": "shell",
"args": [],
"presentation": {
"reveal": "always",
"focus": true,
"clear": true,
"close": false,
"echo": true,
"panel": "dedicated",
"showReuseMessage": false,
},
"group": {
"isDefault": true,
"kind": "build"
}
}
]
}