summaryrefslogtreecommitdiff
path: root/custom/uucp.nix
diff options
context:
space:
mode:
Diffstat (limited to 'custom/uucp.nix')
-rw-r--r--custom/uucp.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/uucp.nix b/custom/uucp.nix
index 226af792..f5b89bfe 100644
--- a/custom/uucp.nix
+++ b/custom/uucp.nix
@@ -17,7 +17,7 @@ let
17 chat "" 17 chat ""
18 protocol ${if builtins.hasAttr name cfg.protocols then cfg.protocols."${name}" else cfg.defaultProtocol} 18 protocol ${if builtins.hasAttr name cfg.protocols then cfg.protocols."${name}" else cfg.defaultProtocol}
19 command-path ${concatStringsSep " " cfg.commandPath} 19 command-path ${concatStringsSep " " cfg.commandPath}
20 commands ${concatStringsSep " " (if builtins.hasAttr name cfg.commands then cfg.commands."${name}" else cfg.defaultCommands)} 20 commands ${concatStringsSep " " (if builtins.hasAttr name cfg.commands then unique (cfg.defaultCommands ++ cfg.commands."${name}") else cfg.defaultCommands)}
21 ''; 21 '';
22 22
23 cfg = config.services.uucp; 23 cfg = config.services.uucp;