11.stylix/modules/zen-browser/testbeds/zen-browser.nix
Karun Sandhu c32c82e460
zen-browser: init (#1694)
Link: https://github.com/nix-community/stylix/pull/1694
Closes: https://github.com/nix-community/stylix/issues/1685

Tested-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
Tested-by: awwpotato <awwpotato@voidq.com>
2025-07-20 16:47:35 -07:00

22 lines
456 B
Nix

{ lib, ... }:
let
profileName = "stylix";
in
{
stylix.testbed.ui.command.text = "zen";
home-manager.sharedModules = lib.singleton {
programs.zen-browser = {
enable = true;
profiles.${profileName} = {
isDefault = true;
settings = {
"app.normandy.first_run" = false;
"zen.welcome-screen.seen" = true;
};
};
};
stylix.targets.zen-browser.profileNames = [ profileName ];
};
}