1
0
Fork 0
mirror of https://github.com/ryanccn/flake.git synced 2025-12-06 00:00:44 +01:00
flake/users/ryan/fonts.nix
2025-04-03 00:36:22 +08:00

30 lines
513 B
Nix

# SPDX-FileCopyrightText: 2025 Ryan Cao <hello@ryanccn.dev>
#
# SPDX-License-Identifier: Apache-2.0
{
pkgs,
inputs,
...
}:
let
pkgs' = inputs.self.packages.${pkgs.stdenvNoCC.hostPlatform.system};
in
{
home.packages = [
pkgs.inter
pkgs.lxgw-wenkai
(pkgs'.ibm-plex-compat.override {
families = [
"sans"
"serif"
"mono"
];
})
pkgs'.ryan-mono-bin
(pkgs.cascadia-code.override { useVariableFont = true; })
pkgs.nerd-fonts.symbols-only
];
}