nixos-config/modules/extras/variables/look/fonts/default.nix

13 lines
201 B
Nix
Raw Normal View History

2024-10-15 02:40:43 -04:00
{ lib, config, ... }:
{
options.look.fonts = lib.mkOption {
type = lib.types.attrs;
default = {};
};
config.look.fonts = {
2024-12-22 22:02:10 -05:00
main = "Ubuntu";
nerd = "UbuntuMono Nerd Font";
2024-10-15 02:40:43 -04:00
};
}