From ff66ac9dd089778154a8197c84a87fcd302d66fa Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Fri, 4 Dec 2015 15:32:21 +0100 Subject: Fix evaluation after merge of #11450. --- nixos/modules/services/x11/window-managers/fluxbox.nix | 1 + nixos/modules/services/x11/window-managers/openbox.nix | 2 ++ nixos/modules/services/x11/window-managers/wmii.nix | 1 + nixos/modules/services/x11/window-managers/xmonad.nix | 1 + 4 files changed, 5 insertions(+) (limited to 'nixos/modules') diff --git a/nixos/modules/services/x11/window-managers/fluxbox.nix b/nixos/modules/services/x11/window-managers/fluxbox.nix index 9f9a4c49b0da..b409335702af 100644 --- a/nixos/modules/services/x11/window-managers/fluxbox.nix +++ b/nixos/modules/services/x11/window-managers/fluxbox.nix @@ -9,6 +9,7 @@ in ###### interface options = { services.xserver.windowManager.fluxbox.enable = mkEnableOption "fluxbox"; + }; ###### implementation config = mkIf cfg.enable { diff --git a/nixos/modules/services/x11/window-managers/openbox.nix b/nixos/modules/services/x11/window-managers/openbox.nix index 5c7803eab1ab..091b533b28be 100644 --- a/nixos/modules/services/x11/window-managers/openbox.nix +++ b/nixos/modules/services/x11/window-managers/openbox.nix @@ -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 = { diff --git a/nixos/modules/services/x11/window-managers/wmii.nix b/nixos/modules/services/x11/window-managers/wmii.nix index e5a15bcb8e00..30c8df782245 100644 --- a/nixos/modules/services/x11/window-managers/wmii.nix +++ b/nixos/modules/services/x11/window-managers/wmii.nix @@ -1,5 +1,6 @@ { config, lib, pkgs, options, modulesPath, ... }: +with lib; let inherit (lib) mkOption mkIf singleton; cfg = config.services.xserver.windowManager.wmii; diff --git a/nixos/modules/services/x11/window-managers/xmonad.nix b/nixos/modules/services/x11/window-managers/xmonad.nix index 0b929342aef6..6af88d4f645b 100644 --- a/nixos/modules/services/x11/window-managers/xmonad.nix +++ b/nixos/modules/services/x11/window-managers/xmonad.nix @@ -1,5 +1,6 @@ {pkgs, lib, config, ...}: +with lib; let inherit (lib) mkOption mkIf optionals literalExample; cfg = config.services.xserver.windowManager.xmonad; -- cgit 1.4.1