From 1b52025f31bb392224303bcae1dd862f93eb03fb Mon Sep 17 00:00:00 2001 From: Alex Stan <90788596+Ultra980@users.noreply.github.com> Date: Mon, 26 Jun 2023 10:57:01 +0300 Subject: [PATCH] fonts Signed-off-by: Alex Stan --- hosts/ultrapc/configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/ultrapc/configuration.nix b/hosts/ultrapc/configuration.nix index 57bfb19..d41661e 100644 --- a/hosts/ultrapc/configuration.nix +++ b/hosts/ultrapc/configuration.nix @@ -18,6 +18,15 @@ in { enable = true; clean.enable = true; }; + fonts = { + fontconfig = { + defaultFonts = { + serif = [ "JetBrainsMono Nerd Font" ]; + sansSerif = [ "JetBrainsMono Nerd Font" ]; + monospace = [ "JetBrainsMono Nerd Font" ]; + }; + }; + }; nix.settings = { trusted-users = [ "root" "ultra" ]; experimental-features = [ "nix-command" "flakes" ];