17 lines
240 B
Nix
17 lines
240 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
fonts = {
|
|
enableDefaultPackages = true;
|
|
fontconfig.enable = true;
|
|
packages = with pkgs; [
|
|
nerd-fonts.fira-code
|
|
nerd-fonts.jetbrains-mono
|
|
nerd-fonts.symbols-only
|
|
rubik
|
|
];
|
|
};
|
|
}
|