This commit is contained in:
Oliver Davies 2025-08-05 08:29:44 +01:00
parent 9c5c7f89b0
commit 32cc453505
2 changed files with 11 additions and 4 deletions

View file

@ -17,7 +17,17 @@
{ pkgs, ... }:
{
devshells.default = {
packages = [ pkgs.marp-cli ];
packages = [
(pkgs.writeShellApplication {
name = "build";
runtimeInputs = [ pkgs.marp-cli ];
text = ''
marp slides.md --preview --watch
'';
})
];
};
};
};

View file

@ -1,3 +0,0 @@
#!/usr/bin/env sh
marp slides.md --preview --watch