Update NixOS module files to include WindowMaker

According to a hint on NixOS mailing list[1], I updated nixos/modules/services/x11/window-managers/default.nix
to include windowmaker.

1 - https://github.com/NixOS/nixpkgs/pull/4066#issuecomment-72017611
This commit is contained in:
AndersonTorres 2015-01-30 20:43:01 -02:00
parent 2d19af84de
commit fff55a968e

View File

@ -7,19 +7,19 @@ let
in
{
imports =
[ ./compiz.nix
./openbox.nix
./metacity.nix
./none.nix
./twm.nix
./wmii.nix
./xmonad.nix
./i3.nix
./herbstluftwm.nix
./bspwm.nix
./stumpwm.nix
];
imports = [
./bspwm.nix
./compiz.nix
./herbstluftwm.nix
./i3.nix
./metacity.nix
./openbox.nix
./stumpwm.nix
./twm.nix
./windowmaker.nix
./wmii.nix
./xmonad.nix
./none.nix ];
options = {
@ -61,4 +61,4 @@ in
config = {
services.xserver.displayManager.session = cfg.session;
};
}
}