nixconf/modules/features/layers/fonts.nix
2026-03-26 23:05:04 -05:00

14 lines
295 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
];
};
}