18 lines
274 B
Nix
18 lines
274 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
package = pkgs.hyprland;
|
|
xwayland = {
|
|
enable = true;
|
|
hidpi = true;
|
|
};
|
|
nvidiaPatches = true;
|
|
extraConfig = builtins.readFile ./hyprland.conf;
|
|
};
|
|
}
|