Fix evaluation after merge of #11450.

This commit is contained in:
Moritz Ulrich 2015-12-04 15:32:21 +01:00
parent 67fda15a89
commit ff66ac9dd0
4 changed files with 5 additions and 0 deletions

View File

@ -9,6 +9,7 @@ in
###### interface
options = {
services.xserver.windowManager.fluxbox.enable = mkEnableOption "fluxbox";
};
###### implementation
config = mkIf cfg.enable {

View File

@ -1,5 +1,6 @@
{lib, pkgs, config, ...}:
with lib;
let
inherit (lib) mkOption mkIf;
cfg = config.services.xserver.windowManager.openbox;
@ -8,6 +9,7 @@ in
{
options = {
services.xserver.windowManager.openbox.enable = mkEnableOption "oroborus";
};
config = mkIf cfg.enable {
services.xserver.windowManager = {

View File

@ -1,5 +1,6 @@
{ config, lib, pkgs, options, modulesPath, ... }:
with lib;
let
inherit (lib) mkOption mkIf singleton;
cfg = config.services.xserver.windowManager.wmii;

View File

@ -1,5 +1,6 @@
{pkgs, lib, config, ...}:
with lib;
let
inherit (lib) mkOption mkIf optionals literalExample;
cfg = config.services.xserver.windowManager.xmonad;