16 lines
309 B
Nix
16 lines
309 B
Nix
{ pkgs, ... }:
|
|
{
|
|
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; [
|
|
]);
|
|
}
|