nixpkgs/nixos/modules/services/x11/window-managers/default.nix

80 lines
1.5 KiB
Nix
Raw Normal View History

{ config, lib, ... }:
with lib;
let
cfg = config.services.xserver.windowManager;
in
{
imports = [
2017-03-24 14:25:31 +00:00
./2bwm.nix
2015-02-28 14:14:33 +00:00
./afterstep.nix
./bspwm.nix
2015-12-02 22:27:52 +00:00
./dwm.nix
./evilwm.nix
2016-03-05 13:13:40 +00:00
./exwm.nix
2015-02-25 03:53:38 +00:00
./fluxbox.nix
./fvwm.nix
./herbstluftwm.nix
./i3.nix
2016-03-07 14:21:53 +00:00
./jwm.nix
2019-05-23 15:08:44 +00:00
./leftwm.nix
./metacity.nix
2016-07-27 17:34:26 +00:00
./mwm.nix
./openbox.nix
2016-07-03 20:09:12 +00:00
./pekwm.nix
./notion.nix
./ratpoison.nix
./sawfish.nix
./stumpwm.nix
2015-03-16 03:24:54 +00:00
./spectrwm.nix
./twm.nix
./windowmaker.nix
./wmii.nix
./xmonad.nix
2015-07-30 05:31:53 +00:00
./qtile.nix
./none.nix ];
options = {
services.xserver.windowManager = {
session = mkOption {
2013-10-30 16:37:45 +00: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 any (w: w.name == defaultWM) cfg.session then
defaultWM
else
throw "Default window manager (${defaultWM}) not found.";
};
};
};
config = {
services.xserver.displayManager.session = cfg.session;
};
}