mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49: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.
26 lines
669 B
Nix
26 lines
669 B
Nix
modulePath:
|
|
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
moduleName = concatStringsSep "." modulePath;
|
|
|
|
firefoxMockOverlay = import ./setup-firefox-mock-overlay.nix modulePath;
|
|
|
|
in {
|
|
imports = [ firefoxMockOverlay ];
|
|
|
|
config = mkIf config.test.enableBig (setAttrByPath modulePath {
|
|
enable = true;
|
|
enableGnomeExtensions = true;
|
|
} // {
|
|
test.asserts.warnings.expected = [''
|
|
Using '${moduleName}.enableGnomeExtensions' has been deprecated and
|
|
will be removed in the future. Please change to overriding the package
|
|
configuration using '${moduleName}.package' instead. You can refer to
|
|
its example for how to do this.
|
|
''];
|
|
});
|
|
}
|