diff options
| author | Alejandro Soto <alejandro@34project.org> | 2025-10-11 12:23:07 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2025-10-11 12:23:07 -0600 |
| commit | 996d0433e53ed3a13577745fa129993825abc824 (patch) | |
| tree | d329ac91465d69600b5000f44ccc8c762693f813 /trivionomicon/modules/waybar/options.nix | |
| parent | a5bb6bec46924a2954382d5726540f6902aaa8b1 (diff) | |
| parent | d7059ab8888ca605bc6a1f5822a070ef8c33b4a4 (diff) | |
Merge commit '23758a11c1acbc5988701ae09c6f75656aa4725e' into master
Diffstat (limited to 'trivionomicon/modules/waybar/options.nix')
| -rw-r--r-- | trivionomicon/modules/waybar/options.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/trivionomicon/modules/waybar/options.nix b/trivionomicon/modules/waybar/options.nix new file mode 100644 index 0000000..b2daa33 --- /dev/null +++ b/trivionomicon/modules/waybar/options.nix @@ -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"; + }; + }; +} |
