diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2016-05-04 11:26:24 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2016-05-04 11:26:24 +0200 |
commit | 5abbd1d1117fb6a022cac8fdd6b853aa0bce0f26 (patch) | |
tree | e70b62d8bfd912c1e2244a8c14d7a57a5421e204 /custom | |
parent | 5362e99fbf2690d663cf8d61332ce8b0857abc83 (diff) | |
download | nixos-5abbd1d1117fb6a022cac8fdd6b853aa0bce0f26.tar nixos-5abbd1d1117fb6a022cac8fdd6b853aa0bce0f26.tar.gz nixos-5abbd1d1117fb6a022cac8fdd6b853aa0bce0f26.tar.bz2 nixos-5abbd1d1117fb6a022cac8fdd6b853aa0bce0f26.tar.xz nixos-5abbd1d1117fb6a022cac8fdd6b853aa0bce0f26.zip |
typo
Diffstat (limited to 'custom')
-rw-r--r-- | custom/uucp.nix | 2 |
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 | ''; |
22 | in { | 22 | in { |
23 | options = { | 23 | options = { |