nixconf/modules/waybar/addname.nix
2024-04-12 11:53:00 +02:00

12 lines
258 B
Nix

lib: name:
{
left = lib.mkOption {
type = with lib.types; listOf (enum [ name ]);
};
center = lib.mkOption {
type = with lib.types; listOf (enum [ name ]);
};
right = lib.mkOption {
type = with lib.types; listOf (enum [ name ]);
};
}