Files
nix-config/modules/home/desktop/extra/waybar/options.nix
2025-07-18 14:50:13 -05:00

27 lines
473 B
Nix

{ lib, ... }:
with lib;
{
options.mjallen.desktop.extra.waybar = {
enable = mkEnableOption "enable waybar";
layer = mkOption {
type = types.str;
default = "top";
};
modules-right = mkOption {
type = with types; listOf string;
default = [];
};
networkInterface = mkOption {
type = types.str;
default = "wlan0";
};
extraModules = mkOption {
type = types.attrs;
default = { };
};
};
}