mirror of
https://github.com/nix-community/home-manager
synced 2024-11-11 05:39:44 +01:00
792757f643
Adds support for Firefox forks by introducing methods that create generic configs and options. Additional configs and options can be added in separate modules.
30 lines
588 B
Nix
30 lines
588 B
Nix
modulePath:
|
|
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = getAttrFromPath modulePath config;
|
|
|
|
firefoxMockOverlay = import ./setup-firefox-mock-overlay.nix modulePath;
|
|
|
|
in {
|
|
imports = [ firefoxMockOverlay ];
|
|
|
|
config = mkIf config.test.enableBig ({
|
|
test.asserts.assertions.expected = [''
|
|
Must not have a ${cfg.name} profile with an existing ID but
|
|
- ID 1 is used by first, second''];
|
|
} // setAttrByPath modulePath {
|
|
enable = true;
|
|
|
|
profiles = {
|
|
first = {
|
|
isDefault = true;
|
|
id = 1;
|
|
};
|
|
second = { id = 1; };
|
|
};
|
|
});
|
|
}
|