2024-02-05 11:46:52 +01:00
|
|
|
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
2022-03-01 22:19:03 +01:00
|
|
|
cfg = config.eboskma.programs.electron;
|
2022-04-27 00:21:19 +02:00
|
|
|
in
|
|
|
|
{
|
2021-11-23 12:09:24 +01:00
|
|
|
options.eboskma.programs.electron = {
|
|
|
|
enable = mkEnableOption "activate electron settings";
|
|
|
|
wayland = mkEnableOption "set Wayland compatibility settings";
|
|
|
|
};
|
|
|
|
|
2022-05-03 18:17:38 +02:00
|
|
|
config = mkIf cfg.enable {
|
|
|
|
xdg.configFile.electron_conf = mkIf cfg.wayland {
|
2021-12-06 09:58:39 +01:00
|
|
|
target = "electron-flags.conf";
|
2021-11-23 12:09:24 +01:00
|
|
|
text = ''
|
|
|
|
--enable-features=UseOzonePlatform
|
|
|
|
--ozone-platform=wayland
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|