nix/build.conf.nix

9 lines
170 B
Nix
Raw Normal View History

2023-08-15 12:24:09 -04:00
with builtins;
2023-08-15 09:38:01 -04:00
{
2023-08-15 12:52:48 -04:00
wm = "xmonad";
2023-08-15 12:24:09 -04:00
2023-08-15 12:52:48 -04:00
# very, very non-exhaustive of course
is-x11 = wm: elem wm ["kde" "xmonad"];
is-wayland = wm: elem wm ["hyprland" "sway"];
2023-08-15 09:38:01 -04:00
}