From 29a0a23205f9aa670598e3bb253793158e7c0337 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Thu, 17 Aug 2023 20:05:28 -0400 Subject: [PATCH] Fix hyprland after changes --- home-manager/linux/programs/hyprland.nix | 5 +---- modules/linux/hyprland.nix | 7 ++----- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/home-manager/linux/programs/hyprland.nix b/home-manager/linux/programs/hyprland.nix index 95f9df6..0cb55ea 100644 --- a/home-manager/linux/programs/hyprland.nix +++ b/home-manager/linux/programs/hyprland.nix @@ -35,10 +35,7 @@ in with lib; { # Enable and configure hyperland wayland.windowManager.hyprland = { enable = true; - xwayland = { - enable = true; - hidpi = false; - }; + xwayland = { enable = true; }; recommendedEnvironment = true; systemdIntegration = false; extraConfig = '' diff --git a/modules/linux/hyprland.nix b/modules/linux/hyprland.nix index 5521362..8f6a2e2 100644 --- a/modules/linux/hyprland.nix +++ b/modules/linux/hyprland.nix @@ -23,7 +23,7 @@ in with lib; { # Turn on GDM for login services.xserver = { # enable = true; - enable = false; + enable = false; autorun = true; # Enable plasma for the applications desktopManager.plasma5.enable = true; @@ -53,10 +53,7 @@ in with lib; { # Enable and configure hyperland programs.hyprland = { enable = true; - xwayland = { - enable = true; - hidpi = false; - }; + xwayland = { enable = true; }; }; # Make swaylock work # https://github.com/NixOS/nixpkgs/issues/158025