14 lines
214 B
Nix
14 lines
214 B
Nix
{
|
|
lib,
|
|
osconfig,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./settings/default.nix
|
|
];
|
|
|
|
wayland.windowManager.hyprland = lib.mkIf osconfig.device.wm.hyprland.enable {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
};
|
|
}
|