diff options
Diffstat (limited to 'custom/uucp.nix')
-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"]; |