19 lines
220 B
Nix
19 lines
220 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
fonts.packages = with pkgs; [
|
|
dejavu_fonts
|
|
ibm-plex
|
|
inter
|
|
noto-fonts
|
|
roboto
|
|
fira
|
|
fira-code
|
|
|
|
nerd-fonts.jetbrains-mono
|
|
nerd-fonts.hack
|
|
|
|
newcomputermodern
|
|
];
|
|
}
|