mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
31 lines
715 B
Nix
31 lines
715 B
Nix
{ pkgs, lib, config, ... }:
|
|
with lib;
|
|
|
|
let cfg = config.fonts.noto-sans;
|
|
|
|
in {
|
|
options.fonts.noto-sans = {
|
|
enable = mkEnableOption "Enable the Noto Sans font";
|
|
default = mkOption {
|
|
type = types.bool;
|
|
description = "Make Noto Sans the default sans-serif font";
|
|
default = false;
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
fonts = {
|
|
packages = with pkgs; [ noto-fonts noto-fonts-cjk noto-fonts-emoji ];
|
|
nerdfonts.additionalFonts = [ "Noto" ];
|
|
fontconfig = {
|
|
defaultFonts.sansSerif = mkIf cfg.default [
|
|
(if (config.fonts.nerdfonts.enable) then
|
|
"Noto Sans Nerd Font"
|
|
else
|
|
"Noto Sans")
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|