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-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
|
||||||
];
|
];
|
||||||
|
|
|
@ -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 = [
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -74,6 +74,9 @@ with pkgs;
|
||||||
# Hardware hacking
|
# Hardware hacking
|
||||||
deprekages.dsview
|
deprekages.dsview
|
||||||
|
|
||||||
|
# Development
|
||||||
|
wireshark-qt
|
||||||
|
|
||||||
# Backup
|
# Backup
|
||||||
kitty
|
kitty
|
||||||
|
|
||||||
|
|
|
@ -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 { };
|
||||||
|
|
Loading…
Add table
Reference in a new issue