11.stylix/modules/chromium/nixos.nix
2025-05-21 13:58:49 -07:00

17 lines
443 B
Nix

{ mkTarget, ... }:
mkTarget {
name = "chromium";
humanName = "Chromium, Google Chrome and Brave";
configElements =
{ colors }:
{
programs.chromium = {
# This enables policies without installing the browser. Policies take up a
# negligible amount of space, so it's reasonable to have this always on.
enable = true;
extraOpts.BrowserThemeColor = colors.withHashtag.base00;
};
};
}