10 lines
138 B
Nix
10 lines
138 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
fonts.packages = with pkgs; [
|
|
(nerdfonts.override { fonts = [ "Ubuntu" ]; })
|
|
noto-fonts
|
|
hack-font
|
|
];
|
|
}
|