this repo has no description

Create publication script to create directory instead of link

hauleth.dev c30055bb 7e43b605

verified
Changed files
+8
+8
flake.nix
···
};
in
{
+
apps.publish = let
+
program = pkgs.writeShellScript "publish" ''
+
cp -r ${self.packages.${system}.blog} public
+
'';
+
in {
+
type = "app";
+
program = "${program}";
+
};
packages = {
inherit blog;
};