nixos/modules/home/dwm.nix

20 lines
375 B
Nix
Raw Normal View History

2024-11-07 02:11:22 +00:00
{ config, lib, pkgs, ... }:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.snowhawk.dwm;
in
{
options.snowhawk.dwm = {
enable = mkEnableOption "niri home-manager module";
};
config = mkIf cfg.enable {
# WM Stuff
xsession.numlock.enable = true;
services.unclutter.enable = true;
2024-11-07 02:11:22 +00:00
services.unclutter.package = pkgs.unclutter-xfixes;
};
}