From e5a132c20fe84caa4af736186d805d19c545a3f5 Mon Sep 17 00:00:00 2001 From: lightly-toasted Date: Thu, 30 Apr 2026 23:48:01 +0900 Subject: [PATCH] chore: enable mouse actions only in host nixos --- home/hosts/nixos.nix | 1 + home/modules/graphical/hyprland.nix | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/home/hosts/nixos.nix b/home/hosts/nixos.nix index 3aac3b6..acdd6f6 100644 --- a/home/hosts/nixos.nix +++ b/home/hosts/nixos.nix @@ -23,4 +23,5 @@ nixpkgs.config.allowUnfree = true; systemd.user.startServices = "sd-switch"; + programs.mouse-actions.enable = true; } diff --git a/home/modules/graphical/hyprland.nix b/home/modules/graphical/hyprland.nix index 2dfede1..55ef3c3 100644 --- a/home/modules/graphical/hyprland.nix +++ b/home/modules/graphical/hyprland.nix @@ -1,7 +1,6 @@ { pkgs, ... }: { - programs.mouse-actions.enable = true; wayland.windowManager.hyprland = { enable = true; package = pkgs.hyprland;