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>
22 lines
456 B
Nix
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 ];
|
|
};
|
|
}
|