Custom nerdfonts with less fonts

This commit is contained in:
fleaz 2024-07-15 18:41:16 +02:00
parent dc9b897151
commit d8162a7630
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083

View file

@ -18,8 +18,19 @@ self: super: {
#mealie = self.callPackage ./mealie { };
gohome = self.callPackage ./gohome { };
matrix-alertmanager-receiver = self.callPackage ./matrix-alertmanager-receiver { };
vimPlugins = super.vimPlugins.extend ( self': super': {
vimPlugins = super.vimPlugins.extend (self': super': {
netrw-nvim = super.callPackage ./netrw-nvim { };
});
salt-lint = super.callPackage ./salt-lint { };
nerdfonts = super.nerdfonts.override {
fonts = [
"DroidSansMono"
"FiraCode"
"FiraMono"
"Inconsolata"
"Iosevka"
"Meslo"
];
};
}