mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-10 15:36:25 +00:00
14 lines
271 B
Nix
14 lines
271 B
Nix
|
{ pkgs, ... }: {
|
||
|
fontProfiles = {
|
||
|
enable = true;
|
||
|
monospace = {
|
||
|
family = "FiraCode Nerd Font";
|
||
|
package = pkgs.nerdfonts.override { fonts = [ "FiraCode" ]; };
|
||
|
};
|
||
|
regular = {
|
||
|
family = "Fira Sans";
|
||
|
package = pkgs.fira;
|
||
|
};
|
||
|
};
|
||
|
}
|