mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 18:57:22 +00:00
11 lines
202 B
Nix
11 lines
202 B
Nix
|
modulePath:
|
||
|
{ config, lib, ... }:
|
||
|
|
||
|
lib.mkIf config.test.enableBig (lib.setAttrByPath modulePath { enable = true; }
|
||
|
// {
|
||
|
programs.firefox = {
|
||
|
enable = true;
|
||
|
package = null;
|
||
|
};
|
||
|
})
|