nixconf/modules/features/layers/fonts.nix
jackjohn7 c44ae86ac1 wip
2026-03-26 08:36:16 -05:00

14 lines
289 B
Nix

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