mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
44 lines
859 B
Nix
44 lines
859 B
Nix
|
{ pkgs, config, ... }:
|
||
|
|
||
|
let
|
||
|
|
||
|
tasksFilePath = if pkgs.stdenv.hostPlatform.isDarwin then
|
||
|
"Library/Application Support/Code/User/tasks.json"
|
||
|
else
|
||
|
".config/Code/User/tasks.json";
|
||
|
|
||
|
tasks = {
|
||
|
version = "2.0.0";
|
||
|
tasks = [{
|
||
|
type = "shell";
|
||
|
label = "Hello task";
|
||
|
command = "hello";
|
||
|
}];
|
||
|
};
|
||
|
|
||
|
expectedTasks = pkgs.writeText "tasks-expected.json" ''
|
||
|
{
|
||
|
"tasks": [
|
||
|
{
|
||
|
"command": "hello",
|
||
|
"label": "Hello task",
|
||
|
"type": "shell"
|
||
|
}
|
||
|
],
|
||
|
"version": "2.0.0"
|
||
|
}
|
||
|
'';
|
||
|
|
||
|
in {
|
||
|
programs.vscode = {
|
||
|
enable = true;
|
||
|
package = pkgs.writeScriptBin "vscode" "" // { pname = "vscode"; };
|
||
|
userTasks = tasks;
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists "home-files/${tasksFilePath}"
|
||
|
assertFileContent "home-files/${tasksFilePath}" "${expectedTasks}"
|
||
|
'';
|
||
|
}
|