13 lines
205 B
Nix
13 lines
205 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.look.fonts = lib.mkOption {
|
|
type = lib.types.attrs;
|
|
default = {};
|
|
};
|
|
|
|
config.look.fonts = {
|
|
main = ''Ubuntu'';
|
|
nerd = ''UbuntuMono Nerd Font'';
|
|
};
|
|
}
|