From 31b8576003f6999b5d4e98385abc55eb39da2a38 Mon Sep 17 00:00:00 2001 From: sadan <117494111+sadan4@users.noreply.github.com> Date: Wed, 12 Mar 2025 23:44:55 -0400 Subject: [PATCH] add vscode build task --- .vscode/tasks.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..2f7429d --- /dev/null +++ b/.vscode/tasks.json @@ -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" + } + } + ] +} \ No newline at end of file