From db03a4a0ee9bf782cbebf8b52c89d82434416f04 Mon Sep 17 00:00:00 2001 From: fleaz Date: Wed, 16 Apr 2025 20:23:49 +0200 Subject: [PATCH] remove some fonts from nerdfonts to reduce package size --- default.nix | 15 ++++++--------- test.nix | 2 +- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/default.nix b/default.nix index 2c1dc62..80f4ce0 100644 --- a/default.nix +++ b/default.nix @@ -2,12 +2,12 @@ self: super: { hacompanion = super.callPackage ./hacompanion { }; cpthook = super.callPackage ./cpthook { }; - python3 = super.python3.override { - packageOverrides = python-self: python-super: { - pytapo = python-self.callPackage ./pytapo { }; - brother-ql = python-self.callPackage ./brother-ql { }; - }; - }; + # python3 = super.python3.override { + # packageOverrides = python-self: python-super: { + # pytapo = python-self.callPackage ./pytapo { }; + # brother-ql = python-self.callPackage ./brother-ql { }; + # }; + # }; #gotosocial = super.callPackage ./gotosocial { }; #pulse-secure = super.callPackage ./pulse-secure { }; @@ -32,9 +32,6 @@ self: super: { "DroidSansMono" "FiraCode" "FiraMono" - "Inconsolata" - "Iosevka" - "Meslo" ]; }; } diff --git a/test.nix b/test.nix index a488943..06e3d9e 100644 --- a/test.nix +++ b/test.nix @@ -6,6 +6,6 @@ let in pkgs.mkShell { buildInputs = with pkgs; [ - intel-compute-runtime-legacy1 + nerdfonts ]; }