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