nixos/cinnamon: Fix excludePackages example

We don't ship blueberry and blueberry is in top-level.
This commit is contained in:
Bobby Rong 2024-07-22 23:57:25 +08:00
parent 22b54a6e7f
commit d2ec434026
No known key found for this signature in database

View File

@ -51,7 +51,7 @@ in
environment.cinnamon.excludePackages = mkOption {
default = [];
example = literalExpression "[ pkgs.cinnamon.blueberry ]";
example = literalExpression "[ pkgs.blueman ]";
type = types.listOf types.package;
description = "Which packages cinnamon should exclude from the default environment";
};