nixos/klipper: Add default value for apiSocket

This commit is contained in:
Zhaofeng Li 2021-07-20 19:21:03 -07:00
parent 9050f3a37e
commit fd435bdab7

View file

@ -30,8 +30,7 @@ in
apiSocket = mkOption {
type = types.nullOr types.path;
default = null;
example = "/run/klipper/api";
default = "/run/klipper/api";
description = "Path of the API socket to create.";
};