fix(nix): directly use hugo for devshell commands

This commit is contained in:
Harsh Shandilya 2022-11-17 21:20:51 +05:30
parent a332e73a9c
commit e1aa6a10d0
1 changed files with 2 additions and 2 deletions

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";
}
];