summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-05-04 11:26:24 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2016-05-04 11:26:24 +0200
commit5abbd1d1117fb6a022cac8fdd6b853aa0bce0f26 (patch)
treee70b62d8bfd912c1e2244a8c14d7a57a5421e204
parent5362e99fbf2690d663cf8d61332ce8b0857abc83 (diff)
downloadnixos-5abbd1d1117fb6a022cac8fdd6b853aa0bce0f26.tar
nixos-5abbd1d1117fb6a022cac8fdd6b853aa0bce0f26.tar.gz
nixos-5abbd1d1117fb6a022cac8fdd6b853aa0bce0f26.tar.bz2
nixos-5abbd1d1117fb6a022cac8fdd6b853aa0bce0f26.tar.xz
nixos-5abbd1d1117fb6a022cac8fdd6b853aa0bce0f26.zip
typo
-rw-r--r--custom/uucp.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/uucp.nix b/custom/uucp.nix
index 080a5951..86a2078b 100644
--- a/custom/uucp.nix
+++ b/custom/uucp.nix
@@ -17,7 +17,7 @@ let
17 chat "" 17 chat ""
18 protocol e 18 protocol e
19 command-path ${concatStringsSep " " config.services.uucp.commandPath} 19 command-path ${concatStringsSep " " config.services.uucp.commandPath}
20 commands ${if config.services.uucp.commands ? name then concatStringsSep " " config.services.uucp.commands."${name}" else config.services.uucp.defaultCommands} 20 commands ${concatStringsSep " " (if config.services.uucp.commands ? name then config.services.uucp.commands."${name}" else config.services.uucp.defaultCommands)}
21 ''; 21 '';
22in { 22in {
23 options = { 23 options = {