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

12 lines
183 B
Nix
Raw Normal View History

2025-02-25 01:37:56 -05:00
{ config, lib, ... }:
2024-10-15 02:40:43 -04:00
{
options.look.fonts = lib.mkOption {
type = lib.types.attrs;
};
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
};
}