mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
2a2796c2bc
They masked the evaluation error caused by removal of
`defaultSessionFromLegacyOptions` variable
in 6be2bfcc32
82 lines
1.4 KiB
Nix
82 lines
1.4 KiB
Nix
{ config, lib, ... }:
|
|
|
|
let
|
|
inherit (lib) mkOption types;
|
|
cfg = config.services.xserver.windowManager;
|
|
in
|
|
|
|
{
|
|
imports = [
|
|
./2bwm.nix
|
|
./afterstep.nix
|
|
./berry.nix
|
|
./bspwm.nix
|
|
./cwm.nix
|
|
./clfswm.nix
|
|
./dk.nix
|
|
./dwm.nix
|
|
./e16.nix
|
|
./evilwm.nix
|
|
./exwm.nix
|
|
./fluxbox.nix
|
|
./fvwm2.nix
|
|
./fvwm3.nix
|
|
./hackedbox.nix
|
|
./herbstluftwm.nix
|
|
./hypr.nix
|
|
./i3.nix
|
|
./jwm.nix
|
|
./leftwm.nix
|
|
./lwm.nix
|
|
./metacity.nix
|
|
./mlvwm.nix
|
|
./mwm.nix
|
|
./openbox.nix
|
|
./pekwm.nix
|
|
./notion.nix
|
|
./ragnarwm.nix
|
|
./ratpoison.nix
|
|
./sawfish.nix
|
|
./smallwm.nix
|
|
./stumpwm.nix
|
|
./spectrwm.nix
|
|
./tinywm.nix
|
|
./twm.nix
|
|
./windowmaker.nix
|
|
./wmderland.nix
|
|
./wmii.nix
|
|
./xmonad.nix
|
|
./yeahwm.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";
|
|
});
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = {
|
|
services.xserver.displayManager.session = cfg.session;
|
|
};
|
|
}
|