font updates~
This commit is contained in:
parent
11eac4d47f
commit
fdfd7ac458
11 changed files with 26 additions and 1 deletions
BIN
fonts/cyberpunk/Rajdhani-Bold.ttf
Normal file
BIN
fonts/cyberpunk/Rajdhani-Bold.ttf
Normal file
Binary file not shown.
BIN
fonts/cyberpunk/Rajdhani-Light.ttf
Normal file
BIN
fonts/cyberpunk/Rajdhani-Light.ttf
Normal file
Binary file not shown.
BIN
fonts/cyberpunk/Rajdhani-Medium.ttf
Normal file
BIN
fonts/cyberpunk/Rajdhani-Medium.ttf
Normal file
Binary file not shown.
BIN
fonts/cyberpunk/Rajdhani-Regular.ttf
Normal file
BIN
fonts/cyberpunk/Rajdhani-Regular.ttf
Normal file
Binary file not shown.
BIN
fonts/cyberpunk/Rajdhani-SemiBold.ttf
Normal file
BIN
fonts/cyberpunk/Rajdhani-SemiBold.ttf
Normal file
Binary file not shown.
18
fonts/cyberpunk/default.nix
Normal file
18
fonts/cyberpunk/default.nix
Normal 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/
|
||||
'';
|
||||
}
|
|
@ -12,6 +12,7 @@
|
|||
deprekages.font-manrope
|
||||
deprekages.font-phantom-sans
|
||||
deprekages.font-ia-writer
|
||||
deprekages.font-pack-cyberpunk
|
||||
pkgs.nerd-fonts.terminess-ttf
|
||||
pkgs.terminus_font
|
||||
];
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
# Generic system settings.
|
||||
#
|
||||
time.timeZone = "Europe/Amsterdam";
|
||||
i18n.defaultLocale = "en_GB.utf8";
|
||||
i18n.defaultLocale = "nl_NL.utf8";
|
||||
|
||||
# Allow use of e.g. 'nix search' and flakes.
|
||||
nix.settings.experimental-features = [
|
||||
|
|
|
@ -115,11 +115,13 @@ with pkgs;
|
|||
ripgrep
|
||||
rr
|
||||
translate-shell
|
||||
tshark
|
||||
unzip
|
||||
unar
|
||||
unrar
|
||||
deprekages.vja
|
||||
wget
|
||||
wireshark-cli
|
||||
zstd
|
||||
zip
|
||||
|
||||
|
|
|
@ -74,6 +74,9 @@ with pkgs;
|
|||
# Hardware hacking
|
||||
deprekages.dsview
|
||||
|
||||
# Development
|
||||
wireshark-qt
|
||||
|
||||
# Backup
|
||||
kitty
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@ flake-utils.lib.eachDefaultSystem (
|
|||
font-manrope = callPackage ../fonts/manrope.nix { };
|
||||
font-phantom-sans = callPackage ../fonts/phantomsans.nix { };
|
||||
font-ia-writer = callPackage ../fonts/iawriter.nix { };
|
||||
font-pack-cyberpunk = callPackage ../fonts/cyberpunk { };
|
||||
|
||||
# scientific things
|
||||
ffts = callPackage ./scopehal-apps/ffts.nix { };
|
||||
|
|
Loading…
Add table
Reference in a new issue