From 42a2d42eecf551dd1990c97c1ae2586cd46674be Mon Sep 17 00:00:00 2001 From: Chris Wells Date: Mon, 30 Dec 2024 21:23:52 -0600 Subject: Started writing the main utilities for my webpage --- nix/build.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 nix/build.nix (limited to 'nix/build.nix') diff --git a/nix/build.nix b/nix/build.nix new file mode 100644 index 0000000..0844618 --- /dev/null +++ b/nix/build.nix @@ -0,0 +1,10 @@ +{ runCommand, buildAssets, ... }: +runCommand "www-assets" { + nativeBuildInputs = [ + buildAssets + ]; +} '' + mkdir -p $out/{css,logos,favicon} + + +'' -- cgit v1.2.3