remove some fonts from nerdfonts to reduce package size

This commit is contained in:
fleaz 2025-04-16 20:23:49 +02:00
parent 62209bcff2
commit db03a4a0ee
2 changed files with 7 additions and 10 deletions

View file

@ -2,12 +2,12 @@ self: super: {
hacompanion = super.callPackage ./hacompanion { }; hacompanion = super.callPackage ./hacompanion { };
cpthook = super.callPackage ./cpthook { }; cpthook = super.callPackage ./cpthook { };
python3 = super.python3.override { # python3 = super.python3.override {
packageOverrides = python-self: python-super: { # packageOverrides = python-self: python-super: {
pytapo = python-self.callPackage ./pytapo { }; # pytapo = python-self.callPackage ./pytapo { };
brother-ql = python-self.callPackage ./brother-ql { }; # brother-ql = python-self.callPackage ./brother-ql { };
}; # };
}; # };
#gotosocial = super.callPackage ./gotosocial { }; #gotosocial = super.callPackage ./gotosocial { };
#pulse-secure = super.callPackage ./pulse-secure { }; #pulse-secure = super.callPackage ./pulse-secure { };
@ -32,9 +32,6 @@ self: super: {
"DroidSansMono" "DroidSansMono"
"FiraCode" "FiraCode"
"FiraMono" "FiraMono"
"Inconsolata"
"Iosevka"
"Meslo"
]; ];
}; };
} }

View file

@ -6,6 +6,6 @@ let
in in
pkgs.mkShell { pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
intel-compute-runtime-legacy1 nerdfonts
]; ];
} }