From bcf028ad6a4e84a85ee546f027e6038c8db4986f Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Fri, 3 Oct 2025 16:34:58 +0200 Subject: [PATCH] feat(desktop): fix some hyprland settings. --- modules/linux/home-manager/hyprland.nix | 6 ------ modules/linux/nixos/hyprland.nix | 12 ------------ 2 files changed, 18 deletions(-) diff --git a/modules/linux/home-manager/hyprland.nix b/modules/linux/home-manager/hyprland.nix index bc3f69c..98efda5 100644 --- a/modules/linux/home-manager/hyprland.nix +++ b/modules/linux/home-manager/hyprland.nix @@ -302,12 +302,6 @@ in { # Make keepassxc floating "float, class:^(org.keepassxc.KeePassXC)$" - # Setup settings for games - "fullscreen,class:^steam_app_\d+$" - "monitor 1,class:^steam_app_\d+$" - "workspace 6,class:^steam_app_\d+$" - "content game, class:^steam_app_\d+$" - # Move to workspace 1 "workspace 1, class:^(org.qutebrowser.qutebrowser)$" diff --git a/modules/linux/nixos/hyprland.nix b/modules/linux/nixos/hyprland.nix index 8c2df94..6fa1a8f 100644 --- a/modules/linux/nixos/hyprland.nix +++ b/modules/linux/nixos/hyprland.nix @@ -10,18 +10,6 @@ }; config = lib.mkIf config.crony.hyprland-nixos.enable { - programs.uwsm = { - enable = true; - - waylandCompositors = { - hyprland = { - prettyName = "Hyprland"; - comment = "Hyprland compositor managed by UWSM"; - binPath = "/run/current-system/sw/bin/Hyprland"; - }; - }; - }; - programs.hyprland = { enable = true; package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;