nixos/config/fonts.nix

25 lines
413 B
Nix
Raw Normal View History

2023-09-11 20:23:04 +02:00
{
pkgs,
lib,
config,
...
}:
with lib;
2023-09-11 20:23:04 +02:00
mkIf (elem "fonts" config.machine.conffiles) {
fonts = {
fontDir.enable = true;
enableGhostscriptFonts = true;
fontconfig = {
enable = true;
includeUserConf = false;
};
packages = with pkgs; [
2024-11-16 18:29:10 +01:00
(nerdfonts.override {
fonts = [
"JetBrainsMono"
];
})
2023-09-11 20:23:04 +02:00
];
2019-02-26 13:44:40 +01:00
};
2023-09-11 20:23:04 +02:00
}