21 lines
342 B
Nix
21 lines
342 B
Nix
{
|
|
pkgs,
|
|
# pkgs-unstable,
|
|
rice,
|
|
...
|
|
}:
|
|
{
|
|
fonts.packages = with pkgs; [
|
|
noto-fonts
|
|
noto-fonts-cjk
|
|
noto-fonts-emoji
|
|
newcomputermodern
|
|
atkinson-hyperlegible
|
|
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
|
] ++ (with rice.font; [
|
|
base.package
|
|
code.package
|
|
# ]) ++ (with pkgs-unstable; [
|
|
]);
|
|
}
|