modules/fonts: Fix nerdfonts and actually include overlay

This commit is contained in:
fleaz 2025-04-16 20:24:29 +02:00
parent e7a496c162
commit 0f5d98e657
4 changed files with 8 additions and 1 deletions

View file

@ -13,6 +13,7 @@
enableDefaultPackages = true;
fontDir.enable = true;
packages = with pkgs; [
nerdfonts
dejavu_fonts
fira-code
];

5
modules/overlay.nix Normal file
View file

@ -0,0 +1,5 @@
{
nixpkgs.overlays = [
(import ../overlay/default.nix)
];
}