From 81ebb44451480102d88c10210afd5cc550af4480 Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Mon, 30 Jun 2025 17:19:13 -0400 Subject: [PATCH] add fonts --- hosts/common/core/default.nix | 1 + hosts/common/core/fonts.nix | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 hosts/common/core/fonts.nix diff --git a/hosts/common/core/default.nix b/hosts/common/core/default.nix index 9d46ff6..0f557d0 100644 --- a/hosts/common/core/default.nix +++ b/hosts/common/core/default.nix @@ -25,6 +25,7 @@ in { "hosts/common/core/sops.nix" "hosts/common/core/ssh.nix" "hosts/common/core/editor.nix" + "hosts/common/core/fonts.nix" "hosts/common/users/primary" "hosts/common/users/primary/${platform}.nix" "modules/common" diff --git a/hosts/common/core/fonts.nix b/hosts/common/core/fonts.nix new file mode 100644 index 0000000..6a33342 --- /dev/null +++ b/hosts/common/core/fonts.nix @@ -0,0 +1,8 @@ +{pkgs, ...}: { + fonts.packages = with pkgs; [ + font-awesome + nerd-fonts.noto + nerd-fonts.hack + nerd-fonts.jetbrains-mono + ]; +}