mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +00:00
[Browser] Improve chromium configurability + wayland support
Allow overriding commandLineArgs and any package params Enable Wayland autodetection
This commit is contained in:
parent
97335ca0de
commit
04b784451f
1 changed files with 24 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, myLib, options, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.aviallon.desktop;
|
cfg = config.aviallon.desktop;
|
||||||
|
|
@ -13,11 +13,32 @@ in {
|
||||||
default = {};
|
default = {};
|
||||||
example = { enablePlasmaIntegration = true; };
|
example = { enablePlasmaIntegration = true; };
|
||||||
};
|
};
|
||||||
|
chromium = {
|
||||||
|
package = mkOption {
|
||||||
|
internal = true;
|
||||||
|
type = myLib.types.package';
|
||||||
|
default = pkgs.chromium;
|
||||||
|
example = literalExpression '' pkgs.ungoogled-chromium '';
|
||||||
|
};
|
||||||
|
overrides = mkOption {
|
||||||
|
internal = true;
|
||||||
|
description = "Override chromium package settings";
|
||||||
|
type = types.attrs;
|
||||||
|
default = {};
|
||||||
|
example = { commandLineArgs = [ "--enable-features=UseOzonePlatform" "--ozone-platform=wayland" ]; };
|
||||||
|
};
|
||||||
|
commandLineArgs = mkOption {
|
||||||
|
description = "Override chromium flags";
|
||||||
|
type = with types; listOf str;
|
||||||
|
default = [ "--ozone-platform-hint=auto" ];
|
||||||
|
example = [ "--ozone-platform-hint=auto" "--ignore-gpu-blacklist" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf (cfg.enable && !generalCfg.minimal) {
|
config = mkIf (cfg.enable && !generalCfg.minimal) {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
chromium
|
(cfg.browser.chromium.package.override cfg.browser.chromium.overrides)
|
||||||
# firefox is added by plasma or gnome
|
# firefox is added by plasma or gnome
|
||||||
|
|
||||||
vdhcoapp
|
vdhcoapp
|
||||||
|
|
@ -39,6 +60,7 @@ in {
|
||||||
"${manifestFile}";
|
"${manifestFile}";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
aviallon.desktop.browser.chromium.overrides.commandLineArgs = cfg.browser.chromium.commandLineArgs;
|
||||||
programs.chromium = {
|
programs.chromium = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# https://docs.microsoft.com/en-us/microsoft-edge/extensions-chromium/enterprise/auto-update
|
# https://docs.microsoft.com/en-us/microsoft-edge/extensions-chromium/enterprise/auto-update
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue