10 lines
201 B
Nix
10 lines
201 B
Nix
{ __findFile, pkgs, ... }:
|
|
{
|
|
fonts.packages = with pkgs; [
|
|
(nerdfonts.override { fonts = [ "Terminus" ]; })
|
|
(pkgs.callPackage <package/applefont> { })
|
|
font-awesome
|
|
minecraftia
|
|
];
|
|
}
|