nixos_config/nixos/modules/theme/fonts.nix

14 lines
230 B
Nix
Raw Normal View History

{ 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
];
}