nix/build.conf.nix

9 lines
178 B
Nix
Raw Normal View History

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