21 lines
377 B
Nix
21 lines
377 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
config = mkIf config.profiles.clerie.desktop.enable {
|
|
|
|
fonts.enableDefaultPackages = true;
|
|
fonts.packages = with pkgs; [
|
|
roboto
|
|
roboto-mono
|
|
noto-fonts
|
|
noto-fonts-emoji
|
|
comfortaa
|
|
] ++ (if pkgs ? "noto-fonts-cjk-sans" then [ pkgs.noto-fonts-cjk-sans ] else [ pkgs.noto-fonts-cjk ]);
|
|
|
|
};
|
|
|
|
}
|