fix: add fonts

This commit is contained in:
Peritia 2026-03-02 14:15:30 +01:00
parent b1cba25f63
commit b50b336867
2 changed files with 15 additions and 0 deletions

View file

@ -1,5 +1,6 @@
{
imports = [
./general.nix
./font.nix
];
}

View file

@ -0,0 +1,14 @@
{
config,
lib,
pkgs,
...
}:
{
fonts.packages = with pkgs; [
nerd-fonts.jetbrains-mono
noto-fonts
];
}