waybar: add waybar module

This commit is contained in:
Fabian Montero 2025-10-07 15:13:17 -06:00
parent b424cc1c1c
commit 23758a11c1
3 changed files with 243 additions and 0 deletions

View file

@ -0,0 +1,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";
};
};
}