From bf8e65ebe39190ff8b2f7efd9a884ef11d3591d3 Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Fri, 7 Jun 2024 22:08:37 +0100 Subject: [PATCH] [tohru] Install Microsoft core web fonts --- common/fonts.nix | 7 +++++++ hosts/tohru/configuration.nix | 1 + 2 files changed, 8 insertions(+) create mode 100644 common/fonts.nix diff --git a/common/fonts.nix b/common/fonts.nix new file mode 100644 index 0000000..1820cd9 --- /dev/null +++ b/common/fonts.nix @@ -0,0 +1,7 @@ +{ config, lib, pkgs, ... }: + +{ + fonts.packages = with pkgs; [ + corefonts + ]; +} diff --git a/hosts/tohru/configuration.nix b/hosts/tohru/configuration.nix index 845a558..388c069 100644 --- a/hosts/tohru/configuration.nix +++ b/hosts/tohru/configuration.nix @@ -5,6 +5,7 @@ [ ./hardware-configuration.nix ./home.nix + ../../common/fonts.nix ../../common/steam.nix ];