mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 09:43:30 +01:00
This package is broken and unmaintained upstream. See also https://github.com/NixOS/nixpkgs/pull/414901#issuecomment-2968784854
88 lines
1.4 KiB
Nix
88 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
|
|
./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;
|
|
};
|
|
}
|