summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-05-15 23:23:14 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2016-05-15 23:23:14 +0200
commitfdcccad60499bb0599303664dd9e1c2472812a0d (patch)
tree9ef7278641f79aceaaac5950484259132e61a8ca
parent1683de93383e8cd17dfa2e1206d965093e57c8bb (diff)
downloadnixos-fdcccad60499bb0599303664dd9e1c2472812a0d.tar
nixos-fdcccad60499bb0599303664dd9e1c2472812a0d.tar.gz
nixos-fdcccad60499bb0599303664dd9e1c2472812a0d.tar.bz2
nixos-fdcccad60499bb0599303664dd9e1c2472812a0d.tar.xz
nixos-fdcccad60499bb0599303664dd9e1c2472812a0d.zip
syntax
-rw-r--r--custom/uucp.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/uucp.nix b/custom/uucp.nix
index 7035b934..57a5c23e 100644
--- a/custom/uucp.nix
+++ b/custom/uucp.nix
@@ -15,7 +15,7 @@ let
15 time Any 15 time Any
16 port ${name} 16 port ${name}
17 chat "" 17 chat ""
18 protocol ${if config.services.uucp.protocols ? name then config.services.uucp.protocols."${name}" else config.services.uucp.defaultProtocol} 18 protocol ${if builtins.hasAttr name config.services.uucp.protocols then config.services.uucp.protocols."${name}" else config.services.uucp.defaultProtocol}
19 command-path ${concatStringsSep " " config.services.uucp.commandPath} 19 command-path ${concatStringsSep " " config.services.uucp.commandPath}
20 commands ${concatStringsSep " " (if builtins.hasAttr name config.services.uucp.commands then config.services.uucp.commands."${name}" else config.services.uucp.defaultCommands)} 20 commands ${concatStringsSep " " (if builtins.hasAttr name config.services.uucp.commands then config.services.uucp.commands."${name}" else config.services.uucp.defaultCommands)}
21 ''; 21 '';