Reformatted with nixfmt

This commit is contained in:
alejandro-angulo 2025-03-31 22:34:25 -07:00
parent f51256c3ae
commit 3f16537322
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
80 changed files with 1454 additions and 992 deletions

View file

@ -4,9 +4,11 @@
pkgs,
namespace,
...
}: let
}:
let
cfg = config.${namespace}.fonts;
in {
in
{
options.${namespace}.fonts = {
enable = lib.mkEnableOption "font config";
};
@ -24,10 +26,10 @@ in {
fonts.fontconfig = {
enable = true;
defaultFonts = {
monospace = ["Hack Nerd Font"];
emoji = ["Noto Color Emoji"];
serif = ["Noto Serif"];
sansSerif = ["Noto Sans"];
monospace = [ "Hack Nerd Font" ];
emoji = [ "Noto Color Emoji" ];
serif = [ "Noto Serif" ];
sansSerif = [ "Noto Sans" ];
};
};
};