My personal blog hauleth.dev
blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Create publication script to create directory instead of link

+8
+8
flake.nix
··· 24 24 }; 25 25 in 26 26 { 27 + apps.publish = let 28 + program = pkgs.writeShellScript "publish" '' 29 + cp -r ${self.packages.${system}.blog} public 30 + ''; 31 + in { 32 + type = "app"; 33 + program = "${program}"; 34 + }; 27 35 packages = { 28 36 inherit blog; 29 37 };