nix/build.conf.nix
2023-08-15 18:31:53 -04:00

13 lines
281 B
Nix

input@{ wm ? null, ...}:
with builtins;
input //
rec {
x11-wms = ["plasma" "xmonad" "i3"];
wayland-wms = ["hyprland" "sway"];
wms = x11-wms ++ wayland-wms;
# very, very non-exhaustive of course
is-x11 = wm: elem wm x11-wms;
is-wayland = wm: elem wm wayland-wms;
}