nixos: fixes after #136909

Changed files
+2 -2
nixos
modules
services
+1 -1
nixos/modules/services/monitoring/alerta.nix
···
corsOrigins = mkOption {
type = types.listOf types.str;
description = "List of URLs that can access the API for Cross-Origin Resource Sharing (CORS)";
-
example = [ "http://localhost" "http://localhost:5000" ];
+
default = [ "http://localhost" "http://localhost:5000" ];
};
authenticationRequired = mkOption {
+1 -1
nixos/modules/services/monitoring/kapacitor.nix
···
dataDir = mkOption {
type = types.path;
-
example = "/var/lib/kapacitor";
+
default = "/var/lib/kapacitor";
description = "Location where Kapacitor stores its state";
};