dwm: unclutter-xfixes

main
Zynh Ludwig 2024-11-06 18:11:22 -08:00
parent e41b72eedf
commit 2500589ae9
1 changed files with 2 additions and 1 deletions

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