mirror of
https://github.com/larstvei/nix-config.git
synced 2025-12-31 12:10:12 +00:00
21 lines
346 B
Nix
21 lines
346 B
Nix
{ pkgs, ... }:
|
|
{
|
|
fonts = {
|
|
packages = with pkgs; [
|
|
iosevka
|
|
source-code-pro
|
|
source-sans
|
|
source-serif
|
|
];
|
|
fontconfig = {
|
|
enable = true;
|
|
defaultFonts = {
|
|
serif = [ "Source Serif 4" ];
|
|
sansSerif = [ "Source Sans 3" ];
|
|
monospace = [ "Source Code Pro" ];
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|