nix-config/modules2/fonts.nix
Oliver Davies 9eca4f3e7b
All checks were successful
/ check (push) Successful in 1m36s
Move fonts configuration
2025-07-25 00:29:49 +01:00

16 lines
284 B
Nix

{
flake.modules.nixos.pc =
{ pkgs, ... }:
{
fonts = {
fontconfig.enable = true;
packages = with pkgs; [
nerd-fonts.jetbrains-mono
nerd-fonts.meslo-lg
terminus_font
terminus_font_ttf
];
};
};
}