Fix homer icon path handling yet again
This commit is contained in:
parent
1340de563b
commit
71a6fc6817
|
@ -14,7 +14,8 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
fa = name: "fas fa-${name}";
|
fa = name: "fas fa-${name}";
|
||||||
icon = file: "assets${../../../../common/icons/${file}}";
|
iconPath = ../../../../common/icons;
|
||||||
|
icon = file: "assets/${iconPath}/${file}";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
services.nginx.virtualHosts."lab.moonythm.dev" = {
|
services.nginx.virtualHosts."lab.moonythm.dev" = {
|
||||||
|
@ -22,7 +23,7 @@ in
|
||||||
acmeRoot = null;
|
acmeRoot = null;
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
root = pkgs.homer.withAssets {
|
root = pkgs.homer.withAssets {
|
||||||
extraAssets = [ ../../../../common/icons ];
|
extraAssets = [ iconPath ];
|
||||||
config = {
|
config = {
|
||||||
title = "✨ The celestial citadel ✨";
|
title = "✨ The celestial citadel ✨";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue