Unverified Commit ff0515b5 authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

nixos/chrony: fix defaultText rendering of enableMemoryLocking option (#420789)

parents 9f879c1d 48f5657f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ in
        default =
          config.environment.memoryAllocator.provider != "graphene-hardened"
          && config.environment.memoryAllocator.provider != "graphene-hardened-light";
        defaultText = ''config.environment.memoryAllocator.provider != "graphene-hardened" && config.environment.memoryAllocator.provider != "graphene-hardened-light"'';
        defaultText = lib.literalExpression ''config.environment.memoryAllocator.provider != "graphene-hardened" && config.environment.memoryAllocator.provider != "graphene-hardened-light"'';
        description = ''
          Whether to add the `-m` flag to lock memory.
        '';