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