2024-03-13 00:20:41 +01:00
|
|
|
modulePath:
|
2024-01-25 23:08:09 +01:00
|
|
|
{ config, lib, ... }:
|
|
|
|
|
2024-03-13 00:20:41 +01:00
|
|
|
with lib;
|
2024-01-25 23:08:09 +01:00
|
|
|
|
2024-03-13 00:20:41 +01:00
|
|
|
let
|
|
|
|
|
2024-10-07 23:06:52 +02:00
|
|
|
firefoxMockOverlay = import ../../setup-firefox-mock-overlay.nix modulePath;
|
2024-03-13 00:20:41 +01:00
|
|
|
|
|
|
|
in {
|
|
|
|
imports = [ firefoxMockOverlay ];
|
|
|
|
|
|
|
|
config = mkIf config.test.enableBig ({
|
2024-01-25 23:08:09 +01:00
|
|
|
test.asserts.assertions.expected =
|
|
|
|
[ "Container id must be smaller than 4294967294 (2^32 - 2)" ];
|
2024-03-13 00:20:41 +01:00
|
|
|
} // setAttrByPath modulePath {
|
|
|
|
enable = true;
|
2024-01-25 23:08:09 +01:00
|
|
|
|
2024-03-13 00:20:41 +01:00
|
|
|
profiles.my-profile = {
|
|
|
|
isDefault = true;
|
|
|
|
id = 1;
|
2024-01-25 23:08:09 +01:00
|
|
|
|
2024-03-13 00:20:41 +01:00
|
|
|
containers = {
|
|
|
|
"shopping" = {
|
|
|
|
id = 4294967294;
|
|
|
|
color = "blue";
|
|
|
|
icon = "circle";
|
2024-01-25 23:08:09 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-03-13 00:20:41 +01:00
|
|
|
});
|
2024-01-25 23:08:09 +01:00
|
|
|
}
|