26 lines
378 B
Nix
26 lines
378 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
fonts = {
|
|
enableDefaultPackages = true;
|
|
packages = with pkgs; [
|
|
ubuntu-classic
|
|
libertine
|
|
nerd-fonts.fira-code
|
|
nerd-fonts.victor-mono
|
|
roboto
|
|
];
|
|
|
|
fontconfig = {
|
|
defaultFonts = {
|
|
serif = [ "Libertine" ];
|
|
sansSerif = [ "Ubuntu" ];
|
|
monospace = [ "FiraCode" ];
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|