fix(nix): directly use hugo for devshell commands

This commit is contained in:
Harsh Shandilya 2022-11-17 21:20:51 +05:30
parent 32761f61d2
commit 4ab0be0442
No known key found for this signature in database

View File

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