nixos_config/nixos/modules/theme/fonts.nix
2026-05-22 19:48:24 +02:00

13 lines
230 B
Nix

{ pkgs, ... }:
let
theme = import ./colors.nix { inherit pkgs; };
in
{
fonts.packages = [
theme.fonts.monospace.package
theme.fonts.sansSerif.package
theme.fonts.serif.package
theme.fonts.emoji.package
];
}