Unverified Commit 43b54f48 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

nixos/services.bees: Fix evaluation (#339185)

parents b2da5d9e 422ae992
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ let
      example = "LABEL=MyBulkDataDrive";
    };
    options.hashTableSizeMB = lib.mkOption {
      type = lib.types.addCheck lib.types.int (n: mod n 16 == 0);
      type = lib.types.addCheck lib.types.int (n: lib.mod n 16 == 0);
      default = 1024; # 1GB; default from upstream beesd script
      description = ''
        Hash table size in MB; must be a multiple of 16.