grimm-nixos-laptop/modules/fonts.nix

12 lines
165 B
Nix
Raw Normal View History

2024-04-10 16:51:28 +02:00
{ pkgs, fonts, ... }:
2023-11-28 23:24:43 +01:00
{
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk
font-awesome
noto-fonts-emoji
roboto
liberation_ttf
];
}