diff options
author | tv <tv@krebsco.de> | 2021-11-08 04:27:12 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2021-11-08 05:14:49 +0100 |
commit | 13a1eb3fc5470919c519f6f2d3a6f87880759a11 (patch) | |
tree | 17c1c60c0051fc9bf9b188a9ffb5f4a83709c557 /krebs | |
parent | 07d9619956c07e18076161c21fd573b3ff6bc05c (diff) |
reaktor2: fix for manual
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/3modules/reaktor2.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/krebs/3modules/reaktor2.nix b/krebs/3modules/reaktor2.nix index fcc453fa4..26aac5d5a 100644 --- a/krebs/3modules/reaktor2.nix +++ b/krebs/3modules/reaktor2.nix @@ -26,11 +26,13 @@ with import <stockholm/lib>; }; stateDir = mkOption { default = "/var/lib/${self.config.username}"; + defaultText = "/var/lib/‹username›"; readOnly = true; type = types.absolute-pathname; }; systemd-service-name = mkOption { default = "reaktor2${optionalString (name != "default") "-${name}"}"; + defaultText = "reaktor2-‹name› or just reaktor2 if ‹name› is \"default\""; type = types.filename; }; sendDelaySec = mkOption { @@ -39,6 +41,7 @@ with import <stockholm/lib>; }; username = mkOption { default = self.config.systemd-service-name; + defaultText = "‹systemd-service-name›"; type = types.username; }; useTLS = mkOption { |