mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
13 lines
223 B
Nix
13 lines
223 B
Nix
{ pkgs, ... }:
|
|
{
|
|
fonts = {
|
|
fontconfig.enable = true;
|
|
enableDefaultPackages = true;
|
|
packages = with pkgs; [
|
|
nerd-fonts.roboto-mono
|
|
nerd-fonts.intone-mono
|
|
nerd-fonts.symbols-only
|
|
];
|
|
};
|
|
}
|