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