This commit is contained in:
LunarAkai 2025-03-15 17:28:04 +01:00
commit 658a42659c
5 changed files with 33 additions and 4 deletions

View file

@ -0,0 +1,5 @@
{...}: {
imports = [
./fonts.nix
];
}

View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
fonts = {
packages = with pkgs; [
(nerd-fonts.override {fonts = ["JetBrains Mono"];})
jetbrains-mono
];
};
}