nixos/klipper: Add default value for apiSocket

+1 -2
+1 -2
nixos/modules/services/misc/klipper.nix
··· 30 31 apiSocket = mkOption { 32 type = types.nullOr types.path; 33 - default = null; 34 - example = "/run/klipper/api"; 35 description = "Path of the API socket to create."; 36 }; 37
··· 30 31 apiSocket = mkOption { 32 type = types.nullOr types.path; 33 + default = "/run/klipper/api"; 34 description = "Path of the API socket to create."; 35 }; 36