nixconf/modules/features/layers/fonts.nix
2026-03-28 18:35:54 -05:00

17 lines
325 B
Nix

{ self, inputs, ... }:
{
flake.nixosModules.fonts =
{ pkgs, lib, ... }:
{
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk-sans
noto-fonts-color-emoji
liberation_ttf
nerd-fonts.martian-mono
dina-font
proggyfonts
ripgrep
];
};
}