nixos-config/home-manager/modules/electron/default.nix

25 lines
509 B
Nix
Raw Normal View History

{
2022-03-01 22:19:03 +01:00
pkgs,
config,
lib,
...
}:
with lib; let
cfg = config.eboskma.programs.electron;
in {
options.eboskma.programs.electron = {
enable = mkEnableOption "activate electron settings";
wayland = mkEnableOption "set Wayland compatibility settings";
};
config = mkIf (cfg.enable) {
2021-12-06 09:58:39 +01:00
xdg.configFile.electron_conf = mkIf (cfg.wayland) {
target = "electron-flags.conf";
text = ''
--enable-features=UseOzonePlatform
--ozone-platform=wayland
'';
};
};
}