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

11 lines
183 B
Nix

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