tons of theme tweaks, +gruvbox

This commit is contained in:
Reid 2026-04-22 21:32:27 -07:00
parent 80d22a470a
commit 2ad77494b2
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
30 changed files with 410 additions and 371 deletions

View file

@ -0,0 +1,28 @@
{ lib, stdenvNoCC }:
stdenvNoCC.mkDerivation {
pname = "loveletter";
version = "1.0.0";
# i think i got this off of a cd collection on nyaa and it had some bootleg stuff too
# looks to be the same as http://www.konaka.com/alice6/lain/resources.html
# downloaded locally bcz the source's uptime isn't trustworthy
src = ./.;
installPhase = ''
runHook preInstall
install -Dm644 -t $out/share/fonts/truetype ./loveletter.ttf
runHook postInstall
'';
meta = with lib; {
description = "The LoveLetter font as featured in Serial Experiments Lain";
homepage = "http://www.konaka.com/alice6/lain/resources.html";
# idk what to put here:
# license = licenses.ofl;
platforms = platforms.all;
};
}

Binary file not shown.