mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
Fix evaluation after merge of #11450.
This commit is contained in:
parent
67fda15a89
commit
ff66ac9dd0
4 changed files with 5 additions and 0 deletions
|
@ -9,6 +9,7 @@ in
|
||||||
###### interface
|
###### interface
|
||||||
options = {
|
options = {
|
||||||
services.xserver.windowManager.fluxbox.enable = mkEnableOption "fluxbox";
|
services.xserver.windowManager.fluxbox.enable = mkEnableOption "fluxbox";
|
||||||
|
};
|
||||||
|
|
||||||
###### implementation
|
###### implementation
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{lib, pkgs, config, ...}:
|
{lib, pkgs, config, ...}:
|
||||||
|
|
||||||
|
with lib;
|
||||||
let
|
let
|
||||||
inherit (lib) mkOption mkIf;
|
inherit (lib) mkOption mkIf;
|
||||||
cfg = config.services.xserver.windowManager.openbox;
|
cfg = config.services.xserver.windowManager.openbox;
|
||||||
|
@ -8,6 +9,7 @@ in
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
services.xserver.windowManager.openbox.enable = mkEnableOption "oroborus";
|
services.xserver.windowManager.openbox.enable = mkEnableOption "oroborus";
|
||||||
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
services.xserver.windowManager = {
|
services.xserver.windowManager = {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{ config, lib, pkgs, options, modulesPath, ... }:
|
{ config, lib, pkgs, options, modulesPath, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
let
|
let
|
||||||
inherit (lib) mkOption mkIf singleton;
|
inherit (lib) mkOption mkIf singleton;
|
||||||
cfg = config.services.xserver.windowManager.wmii;
|
cfg = config.services.xserver.windowManager.wmii;
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{pkgs, lib, config, ...}:
|
{pkgs, lib, config, ...}:
|
||||||
|
|
||||||
|
with lib;
|
||||||
let
|
let
|
||||||
inherit (lib) mkOption mkIf optionals literalExample;
|
inherit (lib) mkOption mkIf optionals literalExample;
|
||||||
cfg = config.services.xserver.windowManager.xmonad;
|
cfg = config.services.xserver.windowManager.xmonad;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue