Fix build errors on 24.05 without web-devicons

This commit is contained in:
Greg Hellings
2024-10-04 10:06:58 -05:00
parent c12ed1b8a9
commit 81f534dd46
3 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
{
# The Hack font is used in the Fugitive sidebars
fonts.fontconfig.enable = true;
home.packages = [ (pkgs.nerdfonts.override { fonts = [ "Hack" ]; }) ];
programs.nixvim = (import ./vim/config.nix { inherit pkgs; }) // { enable = true; };
programs.nixvim = (import ./vim/config.nix { inherit pkgs lib; }) // { enable = true; };
}