{ config, lib, ... }: with lib; let cfg = config.services.xserver.windowManager; in { imports = [ ./2bwm.nix ./afterstep.nix ./bspwm.nix ./cwm.nix ./dwm.nix ./evilwm.nix ./exwm.nix ./fluxbox.nix ./fvwm.nix ./herbstluftwm.nix ./i3.nix ./jwm.nix ./leftwm.nix ./metacity.nix ./mwm.nix ./openbox.nix ./pekwm.nix ./notion.nix ./ratpoison.nix ./sawfish.nix ./stumpwm.nix ./spectrwm.nix ./twm.nix ./windowmaker.nix ./wmii.nix ./xmonad.nix ./qtile.nix ./none.nix ]; options = { services.xserver.windowManager = { session = mkOption { internal = true; default = []; example = [{ name = "wmii"; start = "..."; }]; description = '' Internal option used to add some common line to window manager scripts before forwarding the value to the displayManager. ''; apply = map (d: d // { manage = "window"; }); }; default = mkOption { type = types.nullOr types.str; default = null; example = "wmii"; description = '' Deprecated, please use instead. Default window manager loaded if none have been chosen. ''; }; }; }; config = { services.xserver.displayManager.session = cfg.session; }; }