mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 03:26:17 +00:00
refactor: rfc formatting
This commit is contained in:
@@ -1,9 +1,15 @@
|
||||
{ pkgs, lib, config, ... }:
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
|
||||
let cfg = config.fonts.noto-sans;
|
||||
|
||||
in {
|
||||
let
|
||||
cfg = config.fonts.noto-sans;
|
||||
in
|
||||
{
|
||||
options.fonts.noto-sans = {
|
||||
enable = mkEnableOption "Enable the Noto Sans font";
|
||||
default = mkOption {
|
||||
@@ -15,14 +21,15 @@ in {
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
fonts = {
|
||||
packages = with pkgs; [ noto-fonts noto-fonts-cjk noto-fonts-emoji ];
|
||||
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")
|
||||
(if (config.fonts.nerdfonts.enable) then "Noto Sans Nerd Font" else "Noto Sans")
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user