diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2016-04-27 13:49:57 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2016-04-27 13:49:57 +0200 |
commit | d353928ec6ec65363362cadf2887e737db37755a (patch) | |
tree | c1b49ee7957631bb7604a8003da63a20ee4fa9e9 | |
parent | 30c0f61766d2e04a8e1389c677468aa76b3cb446 (diff) | |
download | nixos-d353928ec6ec65363362cadf2887e737db37755a.tar nixos-d353928ec6ec65363362cadf2887e737db37755a.tar.gz nixos-d353928ec6ec65363362cadf2887e737db37755a.tar.bz2 nixos-d353928ec6ec65363362cadf2887e737db37755a.tar.xz nixos-d353928ec6ec65363362cadf2887e737db37755a.zip |
typos
-rw-r--r-- | custom/uucp.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/custom/uucp.nix b/custom/uucp.nix index 458e0e07..03a764ec 100644 --- a/custom/uucp.nix +++ b/custom/uucp.nix | |||
@@ -158,10 +158,10 @@ in { | |||
158 | port ssh | 158 | port ssh |
159 | type stdin | 159 | type stdin |
160 | protocol e | 160 | protocol e |
161 | '' + concatStringsSep "\n" (map portSpec (builtins.attrNames config.services.uucp.remoteNodes)); | 161 | '' + concatStringsSep "\n" (map portSpec config.services.uucp.remoteNodes); |
162 | }; | 162 | }; |
163 | environment.etc."uucp/sys" = { | 163 | environment.etc."uucp/sys" = { |
164 | text = concatStringsSep "\n" (map sysSpec (builtins.attrNames config.services.uucp.remoteNodes)); | 164 | text = concatStringsSep "\n" (map sysSpec config.services.uucp.remoteNodes); |
165 | }; | 165 | }; |
166 | 166 | ||
167 | security.setuidOwners = map (p: {program = p; owner = "root"; group = "root"; setuid = true; setgid = false;}) ["uucico" "uuxqt" "cu" "uucp" "uuname" "uustat" "uux"]; | 167 | security.setuidOwners = map (p: {program = p; owner = "root"; group = "root"; setuid = true; setgid = false;}) ["uucico" "uuxqt" "cu" "uucp" "uuname" "uustat" "uux"]; |