From b6a3a7a4276901f05b805d98d174f5cbf349a1ef Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Tue, 25 Apr 2023 23:48:28 -0400 Subject: [PATCH] boot/splash: Use symlink for logo artwork This will allow a single build to be made, instead of one build per logo. --- boot/splash/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/splash/default.nix b/boot/splash/default.nix index ca778d09..36a4dd01 100644 --- a/boot/splash/default.nix +++ b/boot/splash/default.nix @@ -3,7 +3,7 @@ let assets = runCommand "boot-splash-assets" {} '' mkdir -p $out - cp ${../../artwork/logo/logo.white.svg} $out/logo.svg + ln -s /etc/logo.svg $out/logo.svg ''; in mobile-nixos.mkLVGUIApp {