mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
11 lines
151 B
Nix
11 lines
151 B
Nix
{ pkgs, ... }:
|
|
{
|
|
fonts = {
|
|
fontconfig.enable = true;
|
|
enableDefaultPackages = true;
|
|
packages = with pkgs; [
|
|
nerdfonts
|
|
];
|
|
};
|
|
}
|