Fix evaluation after merge of #11450.

+5
+1
nixos/modules/services/x11/window-managers/fluxbox.nix
··· 9 ###### interface 10 options = { 11 services.xserver.windowManager.fluxbox.enable = mkEnableOption "fluxbox"; 12 13 ###### implementation 14 config = mkIf cfg.enable {
··· 9 ###### interface 10 options = { 11 services.xserver.windowManager.fluxbox.enable = mkEnableOption "fluxbox"; 12 + }; 13 14 ###### implementation 15 config = mkIf cfg.enable {
+2
nixos/modules/services/x11/window-managers/openbox.nix
··· 1 {lib, pkgs, config, ...}: 2 3 let 4 inherit (lib) mkOption mkIf; 5 cfg = config.services.xserver.windowManager.openbox; ··· 8 { 9 options = { 10 services.xserver.windowManager.openbox.enable = mkEnableOption "oroborus"; 11 12 config = mkIf cfg.enable { 13 services.xserver.windowManager = {
··· 1 {lib, pkgs, config, ...}: 2 3 + with lib; 4 let 5 inherit (lib) mkOption mkIf; 6 cfg = config.services.xserver.windowManager.openbox; ··· 9 { 10 options = { 11 services.xserver.windowManager.openbox.enable = mkEnableOption "oroborus"; 12 + }; 13 14 config = mkIf cfg.enable { 15 services.xserver.windowManager = {
+1
nixos/modules/services/x11/window-managers/wmii.nix
··· 1 { config, lib, pkgs, options, modulesPath, ... }: 2 3 let 4 inherit (lib) mkOption mkIf singleton; 5 cfg = config.services.xserver.windowManager.wmii;
··· 1 { config, lib, pkgs, options, modulesPath, ... }: 2 3 + with lib; 4 let 5 inherit (lib) mkOption mkIf singleton; 6 cfg = config.services.xserver.windowManager.wmii;
+1
nixos/modules/services/x11/window-managers/xmonad.nix
··· 1 {pkgs, lib, config, ...}: 2 3 let 4 inherit (lib) mkOption mkIf optionals literalExample; 5 cfg = config.services.xserver.windowManager.xmonad;
··· 1 {pkgs, lib, config, ...}: 2 3 + with lib; 4 let 5 inherit (lib) mkOption mkIf optionals literalExample; 6 cfg = config.services.xserver.windowManager.xmonad;