nix-config/modules/fedi/akkoma-fe.nix
2025-03-01 18:46:45 +01:00

14 lines
248 B
Nix

{
runCommand,
akkoma-frontends,
xorg,
}:
runCommand "akkoma-fe" {
nativeBuildInputs = [xorg.lndir];
} ''
mkdir $out
lndir ${akkoma-frontends.akkoma-fe} $out
rm $out/static/styles.json
cp ${./styles.json} $out/static/styles.json
''