fix(nix): add help text to commands

This commit is contained in:
Harsh Shandilya 2022-11-17 19:55:08 +05:30
parent 21aca06e96
commit a332e73a9c
1 changed files with 2 additions and 0 deletions

View File

@ -32,11 +32,13 @@
name = "dev";
category = "development";
command = "${pkgs.yarn}/bin/yarn run dev";
help = "Run the Hugo development server";
}
{
name = "build";
category = "deployment";
command = "${pkgs.yarn}/bin/yarn run build";
help = "Build the site";
}
];
};