From 2500589ae9ff2201ffdb40dcda95c579410281c7 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Wed, 6 Nov 2024 18:11:22 -0800 Subject: [PATCH] dwm: unclutter-xfixes --- modules/home/dwm.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/home/dwm.nix b/modules/home/dwm.nix index 8b8c8f4..291c56f 100644 --- a/modules/home/dwm.nix +++ b/modules/home/dwm.nix @@ -1,4 +1,4 @@ -{ config, lib, ... }: +{ config, lib, pkgs, ... }: let inherit (lib) mkIf mkEnableOption; @@ -13,6 +13,7 @@ in # WM Stuff xsession.numlock.enable = true; services.unclutter.enable = true; + services.unclutter.package = pkgs.unclutter-xfixes; }; }