From 309d4730e827c2ff576abc6e00080eecf8d07c45 Mon Sep 17 00:00:00 2001 From: osbm Date: Sat, 26 Oct 2024 18:07:29 +0300 Subject: [PATCH] also commit fonts file --- common/fonts.nix | 16 ++++++++++++++++ hosts/tartarus/configuration.nix | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 common/fonts.nix diff --git a/common/fonts.nix b/common/fonts.nix new file mode 100644 index 0000000..cda4193 --- /dev/null +++ b/common/fonts.nix @@ -0,0 +1,16 @@ +{ pkgs, lib, config, ... }: { + + fonts.packages = with pkgs; [ + noto-fonts + noto-fonts-cjk + noto-fonts-emoji + liberation_ttf + fira-code + fira-code-symbols + mplus-outline-fonts.githubRelease + dina-font + nerdfonts + proggyfonts + ]; + +} \ No newline at end of file diff --git a/hosts/tartarus/configuration.nix b/hosts/tartarus/configuration.nix index 7142864..19dc58b 100644 --- a/hosts/tartarus/configuration.nix +++ b/hosts/tartarus/configuration.nix @@ -5,7 +5,7 @@ { config, pkgs, pkgs-unstable, system-label, ... }: { - imports = [ # Include the results of the hardware scan. + imports = [ ./hardware-configuration.nix ../../common/fonts.nix ];