From febb55d1d741419e56a1a9e3e660c1006a7397c5 Mon Sep 17 00:00:00 2001 From: Aleksandr Lebedev Date: Wed, 22 Oct 2025 18:10:41 +0200 Subject: [PATCH] Fixed missing css on main page --- package.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.nix b/package.nix index 5890e46..39d2e8b 100644 --- a/package.nix +++ b/package.nix @@ -25,7 +25,7 @@ (setq org-html-validation-link nil ;; Don't show validation link org-html-head-include-scripts nil ;; Use our own scripts org-html-head-include-default-style nil ;; Use our own styles - org-html-head "") + org-html-head "") ;; Generate the site output (org-publish-all t) @@ -40,6 +40,7 @@ in ''; installPhase = '' mkdir -p $out + cp ${./style.css} $out/style.css cd public cp -r . $out/ '';