t14_legacy_config/home/gui/fonts.nix
2022-11-29 21:29:21 -06:00

15 lines
286 B
Nix

{ 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
];
};
}