summaryrefslogtreecommitdiff
path: root/custom
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2018-04-06 13:19:37 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2018-04-06 13:19:37 +0200
commit1bc84ed69466dac7d02be5b7b701c45c910a873a (patch)
treec865cd620d476f67afa5688f35a3a3b55c94669e /custom
parent506eb991d0f35dbdb45e321b82a176777c7f1a96 (diff)
downloadnixos-1bc84ed69466dac7d02be5b7b701c45c910a873a.tar
nixos-1bc84ed69466dac7d02be5b7b701c45c910a873a.tar.gz
nixos-1bc84ed69466dac7d02be5b7b701c45c910a873a.tar.bz2
nixos-1bc84ed69466dac7d02be5b7b701c45c910a873a.tar.xz
nixos-1bc84ed69466dac7d02be5b7b701c45c910a873a.zip
Diffstat (limited to 'custom')
-rw-r--r--custom/uucp.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/uucp.nix b/custom/uucp.nix
index 1fa085b8..2016b8c6 100644
--- a/custom/uucp.nix
+++ b/custom/uucp.nix
@@ -349,7 +349,7 @@ in {
349 }; 349 };
350 350
351 systemd.targets."multi-user" = { 351 systemd.targets."multi-user" = {
352 wants = map (name: "uucico@${name}.timer") cfg.remoteNodes; 352 wants = mapAttrsToList (name: node: "uucico@${name}.timer") cfg.remoteNodes;
353 }; 353 };
354 354
355 networking.networkmanager.dispatcherScripts = optional cfg.nmDispatch { 355 networking.networkmanager.dispatcherScripts = optional cfg.nmDispatch {