mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:59:41 +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;
|
||
|
};
|
||
|
}
|