nixconf/modules/waybar/addname.nix
2024-11-07 20:48:01 +01:00

11 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 ]);
};
}