From 92b474511015923814f9d2114beda0f48bafd541 Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Thu, 5 Apr 2018 22:52:02 +0200 Subject: =?UTF-8?q?=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- custom/uucp.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 chat "" protocol ${if builtins.hasAttr name cfg.protocols then cfg.protocols."${name}" else cfg.defaultProtocol} command-path ${concatStringsSep " " cfg.commandPath} - commands ${concatStringsSep " " (if builtins.hasAttr name cfg.commands then cfg.commands."${name}" else cfg.defaultCommands)} + commands ${concatStringsSep " " (if builtins.hasAttr name cfg.commands then unique (cfg.defaultCommands ++ cfg.commands."${name}") else cfg.defaultCommands)} ''; cfg = config.services.uucp; -- cgit v1.2.3