16 lines
233 B
Nix
16 lines
233 B
Nix
{
|
|
lib,
|
|
mylib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with mylib.modules; {
|
|
enable = mkEnableOption "Waybar";
|
|
|
|
monitor = mkOption {
|
|
type = types.str;
|
|
example = "HDMI-A-1";
|
|
description = "What monitor to display the Waybar on";
|
|
};
|
|
}
|