nix/build.conf.nix
2023-08-15 12:52:48 -04:00

9 lines
170 B
Nix

with builtins;
{
wm = "xmonad";
# very, very non-exhaustive of course
is-x11 = wm: elem wm ["kde" "xmonad"];
is-wayland = wm: elem wm ["hyprland" "sway"];
}