25 lines
413 B
Nix
25 lines
413 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
nerdfonts
|
|
noto-fonts
|
|
noto-fonts-cjk
|
|
noto-fonts-emoji
|
|
hack-font
|
|
liberation_ttf
|
|
libertine
|
|
font-awesome
|
|
];
|
|
|
|
fonts = {
|
|
fontconfig = {
|
|
enable = true;
|
|
defaultFonts = {
|
|
serif = [ "NotoSans Nerd Font" ];
|
|
sansSerif = [ "Linux Biolinum O" ];
|
|
monospace = [ "Hack Nerd Font" ];
|
|
};
|
|
};
|
|
};
|
|
}
|