11 lines
125 B
Nix
11 lines
125 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
fonts.fonts = with pkgs; [
|
|
font-awesome
|
|
nerdfonts
|
|
];
|
|
|
|
fonts.fontDir.enable = true;
|
|
}
|