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