13 lines
230 B
Nix
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
|
|
];
|
|
}
|