config

NixOS config
Log | Files | Refs | README | LICENSE

commit a731f3ae41c3e2ecd4ea543e4e912505fdd42cef (tree)
parent 96e2dae42e274a6dd665f2cb3c147ba0c14f118a
Author: Motiejus Jakštys <motiejus@jakstys.lt>
Date:   Tue, 10 Feb 2026 08:45:17 +0000

fix

Diffstat:
Mhosts/fwminex/configuration.nix | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/hosts/fwminex/configuration.nix b/hosts/fwminex/configuration.nix @@ -383,11 +383,11 @@ in cp ${../../jakstys.lt/index.html} $out/index.html cp ${../../jakstys.lt/robots.txt} $out/robots.txt cp ${../../jakstys.lt/robots.txt} $out/googlebfa9b278b6db80a4.html - OUTS=($out/index.html $out/robots.txt googlebfa9b278b6db80a4.html) + OUTS=(index.html robots.txt googlebfa9b278b6db80a4.html) for outfile in "''${OUTS[@]}"; do - zstd -k -19 "$outfile" - brotli -k "$outfile" - zopfli -k "$outfile" + zstd -k -19 "$out/$outfile" + brotli -k "$out/$outfile" + zopfli -k "$out/$outfile" done ''; in