9 lines
190 B
Nix
9 lines
190 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
fonts.fontDir.enable = true;
|
|
fonts.packages = with pkgs; [
|
|
noto-fonts
|
|
(nerdfonts.override {fonts = ["JetBrainsMono" "Iosevka" "IosevkaTerm" ];})
|
|
];
|
|
}
|