nix-config/modules/fonts.nix

17 lines
289 B
Nix
Raw Permalink Normal View History

2025-07-25 00:29:49 +01:00
{
2025-07-31 19:48:30 +01:00
flake.modules.nixos.desktop =
2025-07-25 00:29:49 +01:00
{ pkgs, ... }:
{
fonts = {
fontconfig.enable = true;
packages = with pkgs; [
nerd-fonts.jetbrains-mono
nerd-fonts.meslo-lg
terminus_font
terminus_font_ttf
];
};
};
}