mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Fix evaluation after merge of #11450.
This commit is contained in:
parent
67fda15a89
commit
ff66ac9dd0
@ -9,6 +9,7 @@ in
|
||||
###### interface
|
||||
options = {
|
||||
services.xserver.windowManager.fluxbox.enable = mkEnableOption "fluxbox";
|
||||
};
|
||||
|
||||
###### implementation
|
||||
config = mkIf cfg.enable {
|
||||
|
@ -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 = {
|
||||
|
@ -1,5 +1,6 @@
|
||||
{ config, lib, pkgs, options, modulesPath, ... }:
|
||||
|
||||
with lib;
|
||||
let
|
||||
inherit (lib) mkOption mkIf singleton;
|
||||
cfg = config.services.xserver.windowManager.wmii;
|
||||
|
@ -1,5 +1,6 @@
|
||||
{pkgs, lib, config, ...}:
|
||||
|
||||
with lib;
|
||||
let
|
||||
inherit (lib) mkOption mkIf optionals literalExample;
|
||||
cfg = config.services.xserver.windowManager.xmonad;
|
||||
|
Loading…
Reference in New Issue
Block a user