thanks essie (:

This commit is contained in:
xenia 2024-07-26 12:00:29 +02:00
parent d49923436c
commit 94dfea6674
2 changed files with 18 additions and 2 deletions

View File

@ -54,7 +54,7 @@ esac";
}; };
mouse.hide_when_typing = stdenv.isDarwin; mouse.hide_when_typing = stdenv.isDarwin;
font = { font = {
normal.family = "SAX2"; normal.family = "uzura_font";
size = font-size; size = font-size;
}; };
colors.primary = { colors.primary = {

View File

@ -95,8 +95,24 @@ rec {
sha256 = "sha256-tZnDoxZnIrZkTwjOTUjGcqLaXtdZ2Tl6gcRXMclT6PY="; sha256 = "sha256-tZnDoxZnIrZkTwjOTUjGcqLaXtdZ2Tl6gcRXMclT6PY=";
}; };
uzura = pkgs.fetchurl {
name = "uzura";
url = "http://azukifont.com/font/uzurafont100.zip";
downloadToTemp = true;
recursiveHash = true;
postFetch = ''
mkdir -p $out/share/fonts/opentype
${pkgs.unzip}/bin/unzip -j $downloadedFile 'uzurafont100/uzura.ttf' -d $out/share/fonts/opentype
'';
sha256 = "sha256-FXkb7JQ+CYAKnOgIkeOxPovjVfIOn3xUQHWUT2oCIEM=";
};
all = [ all = [
qr-generator qr-paste qr-generator qr-paste
sax2 manrope metrophobic cleanvertising stencila sax2 manrope metrophobic cleanvertising stencila uzura
]; ];
} }