9 lines
156 B
Nix
9 lines
156 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
fonts.packages = with pkgs; [
|
|
nerd-fonts.fira-code
|
|
nerd-fonts.jetbrains-mono
|
|
];
|
|
fonts.fontDir.enable = true;
|
|
}
|