nix/build.conf.nix
2023-08-15 13:22:30 -04:00

9 lines
173 B
Nix

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