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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

92 lines
1.7 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
./berry.nix
./bspwm.nix
./cwm.nix
./clfswm.nix
2015-12-02 22:27:52 +00:00
./dwm.nix
2021-04-12 19:00:05 +00:00
./e16.nix
./evilwm.nix
2016-03-05 13:13:40 +00:00
./exwm.nix
2015-02-25 03:53:38 +00:00
./fluxbox.nix
2022-07-28 04:42:45 +00:00
./fvwm2.nix
2022-07-28 04:43:28 +00:00
./fvwm3.nix
2022-08-08 04:16:10 +00:00
./hackedbox.nix
./herbstluftwm.nix
2022-10-20 03:17:05 +00:00
./hypr.nix
./i3.nix
2016-03-07 14:21:53 +00:00
./jwm.nix
2019-05-23 15:08:44 +00:00
./leftwm.nix
./lwm.nix
./metacity.nix
2021-07-26 00:05:31 +00:00
./mlvwm.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
2020-05-12 02:53:02 +00:00
./smallwm.nix
./stumpwm.nix
2015-03-16 03:24:54 +00:00
./spectrwm.nix
./tinywm.nix
./twm.nix
./windowmaker.nix
2020-10-27 12:07:36 +00:00
./wmderland.nix
./wmii.nix
./xmonad.nix
./yeahwm.nix
2015-07-30 05:31:53 +00:00
./qtile.nix
2020-04-02 08:07:18 +00:00
./none.nix ];
options = {
services.xserver.windowManager = {
session = mkOption {
2013-10-30 16:37:45 +00:00
internal = true;
default = [];
example = [{
name = "wmii";
start = "...";
}];
description = lib.mdDoc ''
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 = lib.mdDoc ''
**Deprecated**, please use [](#opt-services.xserver.displayManager.defaultSession) instead.
Default window manager loaded if none have been chosen.
'';
};
};
};
config = {
services.xserver.displayManager.session = cfg.session;
};
}