t14_legacy_config/home/gui/fonts.nix

15 lines
286 B
Nix
Raw Normal View History

2022-11-30 04:29:21 +01:00
{ config, pkgs, lib, ... } :
with lib;
let
cfg = config.local.gui.fonts;
in
{
options.local.gui.fonts.enable = mkEnableOption "Font management";
config = mkIf cfg.enable {
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
jetbrains-mono
];
};
}