summary refs log tree commit diff
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2015-12-04 15:32:21 +0100
committerMoritz Ulrich <moritz@tarn-vedra.de>2015-12-04 15:40:47 +0100
commitff66ac9dd089778154a8197c84a87fcd302d66fa (patch)
treeb81afe19e41d457b13c0497d56f9afcf2ba696f5
parent67fda15a8915118cf92818f33d517b47f442a671 (diff)
downloadnixpkgs-ff66ac9dd089778154a8197c84a87fcd302d66fa.tar
nixpkgs-ff66ac9dd089778154a8197c84a87fcd302d66fa.tar.gz
nixpkgs-ff66ac9dd089778154a8197c84a87fcd302d66fa.tar.bz2
nixpkgs-ff66ac9dd089778154a8197c84a87fcd302d66fa.tar.lz
nixpkgs-ff66ac9dd089778154a8197c84a87fcd302d66fa.tar.xz
nixpkgs-ff66ac9dd089778154a8197c84a87fcd302d66fa.tar.zst
nixpkgs-ff66ac9dd089778154a8197c84a87fcd302d66fa.zip
Fix evaluation after merge of #11450.
-rw-r--r--nixos/modules/services/x11/window-managers/fluxbox.nix1
-rw-r--r--nixos/modules/services/x11/window-managers/openbox.nix2
-rw-r--r--nixos/modules/services/x11/window-managers/wmii.nix1
-rw-r--r--nixos/modules/services/x11/window-managers/xmonad.nix1
4 files changed, 5 insertions, 0 deletions
diff --git a/nixos/modules/services/x11/window-managers/fluxbox.nix b/nixos/modules/services/x11/window-managers/fluxbox.nix
index 9f9a4c49b0d..b409335702a 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 5c7803eab1a..091b533b28b 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 e5a15bcb8e0..30c8df78224 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 0b929342aef..6af88d4f645 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;