Files

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

88 lines
1.4 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{ 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;
};
}