mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-20 07:12:36 +00:00
17 lines
260 B
Nix
17 lines
260 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
lib.mkIf config.test.enableBig {
|
||
|
programs.firefox = {
|
||
|
enable = true;
|
||
|
package = null;
|
||
|
};
|
||
|
programs.floorp = {
|
||
|
enable = true;
|
||
|
package = null;
|
||
|
};
|
||
|
programs.librewolf = {
|
||
|
enable = true;
|
||
|
package = null;
|
||
|
};
|
||
|
}
|