From 97b6bd2d9621fb987600bc2e3116dd8539fa7d6a Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Sat, 21 Mar 2020 18:38:44 +0000 Subject: [PATCH] Add some fonts --- desktop.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/desktop.nix b/desktop.nix index 4e7d53d..678ff8f 100644 --- a/desktop.nix +++ b/desktop.nix @@ -1,6 +1,7 @@ { config, pkgs, ... }: let + nonfree = import { config.allowUnfree = true; }; secrets = import ./secrets.nix; in { services.xserver.enable = true; @@ -67,6 +68,11 @@ in { enableGhostscriptFonts = true; fonts = with pkgs; [ ubuntu_font_family + cantarell_fonts + cm_unicode + google-fonts + + nonfree.corefonts ]; };