tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/klipper: Add default value for apiSocket
Zhaofeng Li
4 years ago
fd435bda
9050f3a3
+1
-2
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
misc
klipper.nix
+1
-2
nixos/modules/services/misc/klipper.nix
···
30
30
31
31
apiSocket = mkOption {
32
32
type = types.nullOr types.path;
33
33
-
default = null;
34
34
-
example = "/run/klipper/api";
33
33
+
default = "/run/klipper/api";
35
34
description = "Path of the API socket to create.";
36
35
};
37
36