dwm: unclutter-xfixes

This commit is contained in:
Zynh Ludwig 2024-11-06 18:11:22 -08:00
parent e41b72eedf
commit 2500589ae9

View file

@ -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;
};
}