nixos-config/modules/extras/variables/look/fonts/default.nix
2025-02-25 01:37:56 -05:00

12 lines
201 B
Nix

{ config, lib, ... }:
{
options.look.fonts = lib.mkOption {
type = lib.types.attrs;
default = {};
};
config.look.fonts = {
main = "Ubuntu";
nerd = "UbuntuMono Nerd Font";
};
}