7 lines
179 B
Nix
7 lines
179 B
Nix
|
{ lib, config, pkgs, ... }: {
|
||
|
imports = [ ./config.nix ];
|
||
|
config = lib.mkIf (config.homecfg.wm == "Wayland") {
|
||
|
wayland.windowManager.hyprland = { enable = true; };
|
||
|
};
|
||
|
}
|