Unverified Commit b74d4091 authored by Philip Taron's avatar Philip Taron
Browse files

nixos/tor: fix eval take three

This time I looked through all the symbols in `lib` and verified that each instance had a `lib.` before it.

The `nixosTests.tor` continues to pass. It doesn't cover all the cases, sadly.
parent 53402f94
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -126,7 +126,7 @@ let
            );
          config = {
            flags =
              filter (name: config.${name} == true) isolateFlags
              lib.filter (name: config.${name} == true) isolateFlags
              ++ lib.optional (config.SessionGroup != null) "SessionGroup=${toString config.SessionGroup}";
          };
        }
@@ -244,7 +244,7 @@ let
                    }
                  );
                config = {
                  flags = filter (name: config.${name} == true) flags;
                  flags = lib.filter (name: config.${name} == true) flags;
                };
              }
            ))
@@ -928,7 +928,7 @@ in
                          }
                        );
                      config = {
                        flags = filter (name: config.${name} == true) flags;
                        flags = lib.filter (name: config.${name} == true) flags;
                      };
                    }
                  ))