mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-15 03:24:10 -05:00
18 lines
393 B
Nix
18 lines
393 B
Nix
{pkgs, ...}: {
|
|
fonts = {
|
|
packages = with pkgs; [
|
|
font-awesome
|
|
nerd-fonts.noto
|
|
nerd-fonts.hack
|
|
nerd-fonts.jetbrains-mono
|
|
];
|
|
fontconfig = {
|
|
defaultFonts = {
|
|
monospace = ["JetBrainsMono Nerd Font" "Hack Nerd Font"];
|
|
sansSerif = ["Noto Sans"];
|
|
serif = ["Noto Serif"];
|
|
emoji = ["Noto Color Emoji"];
|
|
};
|
|
};
|
|
};
|
|
}
|