blob: b2daa3390093a5646e32247a3abcbed0fe9e2595 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{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";
};
};
}
|