From 68e9cd0f7eac10a8f82a3a8a5a46a0127eaa9b42 Mon Sep 17 00:00:00 2001 From: Daniel Olsen Date: Thu, 27 Jan 2022 17:07:31 +0100 Subject: [PATCH] nixos/lib: Use SingleLineStr in systemd description --- nixos/lib/systemd-unit-options.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/lib/systemd-unit-options.nix b/nixos/lib/systemd-unit-options.nix index 01f954a4d3e0..832a33d64290 100644 --- a/nixos/lib/systemd-unit-options.nix +++ b/nixos/lib/systemd-unit-options.nix @@ -98,7 +98,7 @@ in rec { description = mkOption { default = ""; - type = types.str; + type = types.singleLineStr; description = "Description of this unit used in systemd messages and progress indicators."; };