From a9bc2afbd0fd8eb102e0ab56faab0a71f6407a13 Mon Sep 17 00:00:00 2001
From: coolneng <akasroua@gmail.com>
Date: Wed, 17 Feb 2021 04:25:27 +0100
Subject: [PATCH] Replace terminus-nerdfont with inconsolata

---
 modules/software.nix | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/modules/software.nix b/modules/software.nix
index a1368ed..daa66ba 100644
--- a/modules/software.nix
+++ b/modules/software.nix
@@ -95,14 +95,12 @@
   ];
 
   # Fonts declaration
-  fonts = {
-    fonts = with pkgs; [
-      google-fonts
-      emacs-all-the-icons-fonts
-      terminus-nerdfont
-      terminus_font_ttf
-      iosevka-bin
-    ];
-  };
+  fonts.fonts = with pkgs; [
+    google-fonts
+    emacs-all-the-icons-fonts
+    inconsolata-nerdfont
+    terminus_font_ttf
+    iosevka-bin
+  ];
 
 }