Skip to content

Commit

Permalink
misc: remove emoji for now
Browse files Browse the repository at this point in the history
  • Loading branch information
codgician committed May 14, 2024
1 parent e070c1e commit a70d1c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
default = lib.seelies.mkSite {
inherit pkgs lib slidePkgs;
name = "seelies";
title = "💥 Seelies";
description = "All slides made by [codgician](https://github.com/codgician).";
title = "Seelies";
description = "A collection of slides made by [codgician](https://github.com/codgician).";
version = "rolling";
src = ./.;
license = lib.licenses.cc-by-nc-sa-40;
Expand Down
2 changes: 1 addition & 1 deletion lib/site.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
installPhase = builtins.concatStringsSep "\n" (
[
"mkdir -p $out"
"${pkgs.pandoc}/bin/pandoc -s -o $out/index.html ${indexMd} --metadata title='${title}'"
"${pkgs.pandoc}/bin/pandoc -s -f gfm -o $out/index.html ${indexMd} --metadata title='${title}'"
]
++ (builtins.map (p: "mkdir -p $out/${p.pname} \n ln -s ${p}/* $out/${p.pname}") slidePkgs)
);
Expand Down

0 comments on commit a70d1c9

Please sign in to comment.