2018-07-20 21:56:59 +01:00
|
|
|
{ config, lib, ... }:
|
2013-09-04 12:05:09 +01:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2009-01-25 15:49:08 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.xserver.windowManager;
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2015-01-30 22:43:01 +00:00
|
|
|
imports = [
|
2017-03-24 14:25:31 +00:00
|
|
|
./2bwm.nix
|
2015-02-28 14:14:33 +00:00
|
|
|
./afterstep.nix
|
2020-05-13 01:53:59 +01:00
|
|
|
./berry.nix
|
2015-01-30 22:43:01 +00:00
|
|
|
./bspwm.nix
|
2019-10-08 18:48:09 +01:00
|
|
|
./cwm.nix
|
2021-01-11 23:59:49 +00:00
|
|
|
./clfswm.nix
|
2015-12-02 22:27:52 +00:00
|
|
|
./dwm.nix
|
2021-04-12 20:00:05 +01:00
|
|
|
./e16.nix
|
2018-03-15 09:14:10 +00:00
|
|
|
./evilwm.nix
|
2016-03-05 13:13:40 +00:00
|
|
|
./exwm.nix
|
2015-02-25 03:53:38 +00:00
|
|
|
./fluxbox.nix
|
2017-04-05 16:12:46 +01:00
|
|
|
./fvwm.nix
|
2015-01-30 22:43:01 +00:00
|
|
|
./herbstluftwm.nix
|
|
|
|
./i3.nix
|
2016-03-07 14:21:53 +00:00
|
|
|
./jwm.nix
|
2019-05-23 16:08:44 +01:00
|
|
|
./leftwm.nix
|
2020-05-13 05:26:41 +01:00
|
|
|
./lwm.nix
|
2015-01-30 22:43:01 +00:00
|
|
|
./metacity.nix
|
2016-07-27 18:34:26 +01:00
|
|
|
./mwm.nix
|
2015-01-30 22:43:01 +00:00
|
|
|
./openbox.nix
|
2016-07-03 21:09:12 +01:00
|
|
|
./pekwm.nix
|
2015-07-14 17:35:35 +01:00
|
|
|
./notion.nix
|
2015-04-08 13:14:37 +01:00
|
|
|
./ratpoison.nix
|
2015-02-06 16:32:55 +00:00
|
|
|
./sawfish.nix
|
2020-05-12 03:53:02 +01:00
|
|
|
./smallwm.nix
|
2015-01-30 22:43:01 +00:00
|
|
|
./stumpwm.nix
|
2015-03-16 03:24:54 +00:00
|
|
|
./spectrwm.nix
|
2020-05-08 16:45:02 +01:00
|
|
|
./tinywm.nix
|
2015-01-30 22:43:01 +00:00
|
|
|
./twm.nix
|
|
|
|
./windowmaker.nix
|
2020-10-27 12:07:36 +00:00
|
|
|
./wmderland.nix
|
2015-01-30 22:43:01 +00:00
|
|
|
./wmii.nix
|
|
|
|
./xmonad.nix
|
2020-05-12 22:13:51 +01:00
|
|
|
./yeahwm.nix
|
2015-07-30 06:31:53 +01:00
|
|
|
./qtile.nix
|
2020-04-02 09:07:18 +01:00
|
|
|
./none.nix ];
|
2009-01-25 15:49:08 +00:00
|
|
|
|
2009-09-15 09:33:45 +01:00
|
|
|
options = {
|
2013-09-04 12:05:09 +01:00
|
|
|
|
2009-09-15 09:33:45 +01:00
|
|
|
services.xserver.windowManager = {
|
2009-01-25 15:49:08 +00:00
|
|
|
|
2009-09-15 09:33:45 +01:00
|
|
|
session = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
internal = true;
|
2009-09-15 09:33:45 +01:00
|
|
|
default = [];
|
|
|
|
example = [{
|
|
|
|
name = "wmii";
|
|
|
|
start = "...";
|
|
|
|
}];
|
2013-09-04 12:05:09 +01:00
|
|
|
description = ''
|
2009-09-15 09:33:45 +01:00
|
|
|
Internal option used to add some common line to window manager
|
|
|
|
scripts before forwarding the value to the
|
|
|
|
<varname>displayManager</varname>.
|
2013-09-04 12:05:09 +01:00
|
|
|
'';
|
2009-09-15 09:33:45 +01:00
|
|
|
apply = map (d: d // {
|
|
|
|
manage = "window";
|
|
|
|
});
|
|
|
|
};
|
2009-01-25 15:49:08 +00:00
|
|
|
|
2009-09-15 09:33:45 +01:00
|
|
|
default = mkOption {
|
2019-12-10 14:10:30 +00:00
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
2009-09-15 09:33:45 +01:00
|
|
|
example = "wmii";
|
2019-12-10 14:10:30 +00:00
|
|
|
description = ''
|
|
|
|
<emphasis role="strong">Deprecated</emphasis>, please use <xref linkend="opt-services.xserver.displayManager.defaultSession"/> instead.
|
|
|
|
|
|
|
|
Default window manager loaded if none have been chosen.
|
|
|
|
'';
|
2009-01-25 15:49:08 +00:00
|
|
|
};
|
2009-09-15 09:33:45 +01:00
|
|
|
|
2009-01-25 15:49:08 +00:00
|
|
|
};
|
2013-09-04 12:05:09 +01:00
|
|
|
|
2009-01-25 15:49:08 +00:00
|
|
|
};
|
2009-09-15 09:33:45 +01:00
|
|
|
|
|
|
|
config = {
|
|
|
|
services.xserver.displayManager.session = cfg.session;
|
|
|
|
};
|
2015-01-30 22:43:01 +00:00
|
|
|
}
|