1
Fork 0

Change the way homar assets work

This commit is contained in:
prescientmoon 2024-02-24 04:19:35 +01:00
parent 335dc4e56a
commit c8676f8395
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4

View file

@ -23,14 +23,13 @@ let
text = builtins.toJSON config;
destination = "/assets/config.yml";
})
] ++ lib.optional (extraAssets != [ ])
(runCommandLocal "homer-assets${nameSuffix}" { }
(builtins.concatStringsSep "\n" (map
(asset: ''
mkdir -p $out/assets/${dirOf asset}
ln -s ${asset} $out/assets/${asset}
'')
extraAssets)));
] ++ extraAssets;
postBuid = lib.concatStringsSep "\n" (map
(asset: ''
mv $out/${asset} $out/assets/${asset}
'')
extraAssets);
};
};
};