mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-29 12:12:19 +00:00
14 lines
181 B
Nix
14 lines
181 B
Nix
{pkgs, ... }: {
|
|
|
|
services.xserver = {
|
|
displayManager.gdm = {
|
|
wayland = true;
|
|
};
|
|
};
|
|
|
|
programs.hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
};
|
|
|
|
}
|