Unverified Commit 9a2e7233 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #208045 from figsoda/fix-env

nixos/environment: fix variables type
parents 8f08140d 9d733987
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ in
        strings.  The latter is concatenated, interspersed with colon
        characters.
      '';
      type = with types; attrsOf (oneOf [ str path (listOf str) ]);
      type = with types; attrsOf (oneOf [ (listOf str) str path ]);
      apply = mapAttrs (n: v: if isList v then concatStringsSep ":" v else "${v}");
    };