mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 09:19:40 +00:00
14 lines
193 B
Nix
14 lines
193 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf;
|
|
|
|
cfgEnabled = config.myOptions.home-manager.wms.isWayland;
|
|
in {
|
|
config = mkIf cfgEnabled {
|
|
programs.xwayland.enable = true;
|
|
};
|
|
}
|