font updates~

This commit is contained in:
Kate 2025-05-16 18:28:11 +02:00
parent 11eac4d47f
commit fdfd7ac458
11 changed files with 26 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,18 @@
#
# CP2077 interface font pack.
#
{
stdenv,
fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "cyberpunk-fonts";
version = "0.1.0";
src = ./.;
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp $src/*.ttf $out/share/fonts/truetype/
'';
}

View file

@ -12,6 +12,7 @@
deprekages.font-manrope deprekages.font-manrope
deprekages.font-phantom-sans deprekages.font-phantom-sans
deprekages.font-ia-writer deprekages.font-ia-writer
deprekages.font-pack-cyberpunk
pkgs.nerd-fonts.terminess-ttf pkgs.nerd-fonts.terminess-ttf
pkgs.terminus_font pkgs.terminus_font
]; ];

View file

@ -16,7 +16,7 @@
# Generic system settings. # Generic system settings.
# #
time.timeZone = "Europe/Amsterdam"; time.timeZone = "Europe/Amsterdam";
i18n.defaultLocale = "en_GB.utf8"; i18n.defaultLocale = "nl_NL.utf8";
# Allow use of e.g. 'nix search' and flakes. # Allow use of e.g. 'nix search' and flakes.
nix.settings.experimental-features = [ nix.settings.experimental-features = [

View file

@ -115,11 +115,13 @@ with pkgs;
ripgrep ripgrep
rr rr
translate-shell translate-shell
tshark
unzip unzip
unar unar
unrar unrar
deprekages.vja deprekages.vja
wget wget
wireshark-cli
zstd zstd
zip zip

View file

@ -74,6 +74,9 @@ with pkgs;
# Hardware hacking # Hardware hacking
deprekages.dsview deprekages.dsview
# Development
wireshark-qt
# Backup # Backup
kitty kitty

View file

@ -26,6 +26,7 @@ flake-utils.lib.eachDefaultSystem (
font-manrope = callPackage ../fonts/manrope.nix { }; font-manrope = callPackage ../fonts/manrope.nix { };
font-phantom-sans = callPackage ../fonts/phantomsans.nix { }; font-phantom-sans = callPackage ../fonts/phantomsans.nix { };
font-ia-writer = callPackage ../fonts/iawriter.nix { }; font-ia-writer = callPackage ../fonts/iawriter.nix { };
font-pack-cyberpunk = callPackage ../fonts/cyberpunk { };
# scientific things # scientific things
ffts = callPackage ./scopehal-apps/ffts.nix { }; ffts = callPackage ./scopehal-apps/ffts.nix { };