mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-20 15:22:34 +00:00
The issue itself was resolved with: https://github.com/nix-community/home-manager/pull/6460 This patch only adds a test case to make sure we don't ever regress by installing firefox and librewolf and floorp at the same time. Closes: #6467 Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
16 lines
260 B
Nix
16 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;
|
|
};
|
|
}
|