From 936ca8babb2c986d026161d996a3b82007008463 Mon Sep 17 00:00:00 2001 From: notohh Date: Fri, 16 Dec 2022 17:27:16 -0500 Subject: [PATCH] cleann --- configuration.nix | 54 +++++++++++++++++++++++------------------------ 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/configuration.nix b/configuration.nix index b6684e9..51fb9dd 100644 --- a/configuration.nix +++ b/configuration.nix @@ -170,6 +170,33 @@ ]; + fonts = { + enableDefaultFonts = true; + fontDir.enable = true; + + fonts = with pkgs; [ + inter + jetbrains-mono + nerdfonts + noto-fonts-cjk-sans + twemoji-color-font + font-awesome + fira-code-symbols + kochi-substitute + ipafont + ]; + + fontconfig = { + enable = true; + allowBitmaps = true; + defaultFonts = { + monospace = ["JetBrains Mono"]; + sansSerif = ["Google Sans Text"]; + }; + hinting.style = "hintfull"; + }; + }; + # programs programs.steam.enable = true; @@ -205,33 +232,6 @@ trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="]; }; - fonts = { - enableDefaultFonts = true; - fontDir.enable = true; - - fonts = with pkgs; [ - inter - jetbrains-mono - nerdfonts - noto-fonts-cjk-sans - twemoji-color-font - font-awesome - fira-code-symbols - kochi-substitute - ipafont - ]; - - fontconfig = { - enable = true; - allowBitmaps = true; - defaultFonts = { - monospace = ["JetBrains Mono"]; - sansSerif = ["Google Sans Text"]; - }; - hinting.style = "hintfull"; - }; - }; - nixpkgs.config.permittedInsecurePackages = [ "qtwebkit-5.212.0-alpha4" "electron-12.2.3"