{ config, lib, pkgs, hostname, ... }: { home.packages = with pkgs; [ swaybg ]; wayland.windowManager.hyprland = { enable = true; package = pkgs.hyprland; xwayland = { enable = true; hidpi = true; }; nvidiaPatches = true; extraConfig = (builtins.readFile ./${hostname}.conf) + (builtins.readFile ./hyprland.conf); }; }