23 lines
439 B
Nix
23 lines
439 B
Nix
{lib, ...}:
|
|
with lib.types; {
|
|
hm = {
|
|
battery = lib.mkOption {
|
|
type = bool;
|
|
default = false;
|
|
description = ''
|
|
`true` to display battery info
|
|
'';
|
|
};
|
|
fontFamily = lib.mkOption {
|
|
type = str;
|
|
example = "JetBrainsMono Nerd Font";
|
|
description = ''
|
|
needs to be a nerdfont
|
|
'';
|
|
};
|
|
fontSize = lib.mkOption {
|
|
type = str;
|
|
default = "12px";
|
|
};
|
|
};
|
|
}
|