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.
24 lines
488 B
Nix
24 lines
488 B
Nix
modulePath:
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = getAttrFromPath modulePath config;
|
|
|
|
firefoxMockOverlay = import ./setup-firefox-mock-overlay.nix modulePath;
|
|
|
|
in {
|
|
imports = [ firefoxMockOverlay ];
|
|
|
|
config = lib.mkIf config.test.enableBig ({
|
|
home.stateVersion = "19.09";
|
|
} // setAttrByPath modulePath { enable = true; } // {
|
|
nmt.script = ''
|
|
assertFileRegex \
|
|
home-path/bin/${cfg.wrappedPackageName} \
|
|
MOZ_APP_LAUNCHER
|
|
'';
|
|
});
|
|
}
|