80 lines
1.6 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.xserver.windowManager;
in
{
imports = [
2017-03-24 15:25:31 +01:00
./2bwm.nix
2015-02-28 11:14:33 -03:00
./afterstep.nix
./bspwm.nix
2015-12-02 17:27:52 -05:00
./dwm.nix
2016-03-06 00:13:40 +11:00
./exwm.nix
2015-02-25 00:53:38 -03:00
./fluxbox.nix
./fvwm.nix
./herbstluftwm.nix
./i3.nix
2016-03-07 11:21:53 -03:00
./jwm.nix
./metacity.nix
2016-07-27 20:34:26 +03:00
./mwm.nix
./openbox.nix
2016-07-03 17:09:12 -03:00
./pekwm.nix
./notion.nix
./ratpoison.nix
./sawfish.nix
./stumpwm.nix
2015-03-15 20:24:54 -07:00
./spectrwm.nix
./twm.nix
./windowmaker.nix
./wmii.nix
./xmonad.nix
2015-07-30 07:31:53 +02:00
./qtile.nix
./none.nix ];
options = {
services.xserver.windowManager = {
session = mkOption {
2013-10-30 17:37:45 +01:00
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
<varname>displayManager</varname>.
'';
apply = map (d: d // {
manage = "window";
});
};
default = mkOption {
type = types.str;
default = "none";
example = "wmii";
description = "Default window manager loaded if none have been chosen.";
apply = defaultWM:
if defaultWM == "none" && cfg.session != [] then
(head cfg.session).name
else if any (w: w.name == defaultWM) cfg.session then
defaultWM
else
throw "Default window manager (${defaultWM}) not found.";
};
};
};
config = {
services.xserver.displayManager.session = cfg.session;
};
}