1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-20 15:22:34 +00:00
home-manager/tests/modules/programs/firefox/profiles/containers/default.nix

30 lines
631 B
Nix
Raw Normal View History

modulePath:
{ config, lib, ... }:
let
cfg = lib.getAttrFromPath modulePath config;
firefoxMockOverlay = import ../../setup-firefox-mock-overlay.nix modulePath;
in {
imports = [ firefoxMockOverlay ];
config = lib.mkIf config.test.enableBig (lib.setAttrByPath modulePath {
enable = true;
profiles.containers = {
containers = {
"shopping" = {
icon = "circle";
color = "yellow";
};
};
};
} // {
nmt.script = ''
assertFileContent \
home-files/${cfg.configPath}/containers/containers.json \
${./expected-containers.json}
'';
});
}