20 lines
286 B
Nix
20 lines
286 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
wayland = {
|
|
windowManager = {
|
|
sway = {
|
|
enable = true;
|
|
};
|
|
hyprland = {
|
|
enable = false;
|
|
xwayland = {
|
|
enable = true;
|
|
hidpi = true;
|
|
};
|
|
nvidiaPatches = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|