Add marp dev shell

Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
This commit is contained in:
Oliver Davies 2025-09-25 08:00:00 +01:00
parent d509e167da
commit b2803aac2d

View file

@ -122,13 +122,9 @@
};
in
{
devShells.${system}.default =
with pkgs;
mkShell {
packages =
with pkgs;
commonBuildInputs
++ [
devShells.${system} = with pkgs; {
default = mkShell {
packages = commonBuildInputs ++ [
ghostscript
just
pdfpc
@ -136,9 +132,15 @@
];
};
marp = mkShell {
packages = [ marp-cli ];
};
};
packages.${system} = {
inherit shared-assets;
} // talks;
}
// talks;
formatter.${system} = pkgs.nixfmt-rfc-style;
};