31 lines
No EOL
962 B
JSON
31 lines
No EOL
962 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "nixos-rebuild switch",
|
|
"type": "shell",
|
|
"command": "nixos-rebuild switch --flake .#atreus --use-remote-sudo",
|
|
"detail": "Switches to the current config with use remote sudo.",
|
|
"promptOnClose": true,
|
|
"presentation": {
|
|
"echo": false,
|
|
"reveal": "always",
|
|
"revealProblems": "never",
|
|
"close": true,
|
|
"focus": true,
|
|
"panel": "dedicated",
|
|
"showReuseMessage": true,
|
|
"clear": true
|
|
},
|
|
"runOptions": {
|
|
"instanceLimit": 1
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
}
|
|
]
|
|
} |