11 lines
229 B
Nix
11 lines
229 B
Nix
{ lib, pkgs, config, ... }:
|
|
|
|
{
|
|
fonts.packages = with pkgs; [
|
|
nerd-fonts.iosevka
|
|
nerd-fonts.fira-code
|
|
nerd-fonts.jetbrains-mono
|
|
];
|
|
xdg.configFile."fontconfig/conf.d/10-hm-fonts.conf".force = true;
|
|
}
|