nix-config/modules2/fonts.nix
Oliver Davies 865c60d557
All checks were successful
/ check (push) Successful in 1m45s
Make more things desktop only
2025-07-31 19:48:30 +01:00

16 lines
289 B
Nix

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