tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Fix evaluation after merge of #11450.
moritz.vongoewels.de
10 years ago
ff66ac9d
67fda15a
+5
4 changed files
expand all
collapse all
unified
split
nixos
modules
services
x11
window-managers
fluxbox.nix
openbox.nix
wmii.nix
xmonad.nix
+1
nixos/modules/services/x11/window-managers/fluxbox.nix
···
9
9
###### interface
10
10
options = {
11
11
services.xserver.windowManager.fluxbox.enable = mkEnableOption "fluxbox";
12
12
+
};
12
13
13
14
###### implementation
14
15
config = mkIf cfg.enable {
+2
nixos/modules/services/x11/window-managers/openbox.nix
···
1
1
{lib, pkgs, config, ...}:
2
2
3
3
+
with lib;
3
4
let
4
5
inherit (lib) mkOption mkIf;
5
6
cfg = config.services.xserver.windowManager.openbox;
···
8
9
{
9
10
options = {
10
11
services.xserver.windowManager.openbox.enable = mkEnableOption "oroborus";
12
12
+
};
11
13
12
14
config = mkIf cfg.enable {
13
15
services.xserver.windowManager = {
+1
nixos/modules/services/x11/window-managers/wmii.nix
···
1
1
{ config, lib, pkgs, options, modulesPath, ... }:
2
2
3
3
+
with lib;
3
4
let
4
5
inherit (lib) mkOption mkIf singleton;
5
6
cfg = config.services.xserver.windowManager.wmii;
+1
nixos/modules/services/x11/window-managers/xmonad.nix
···
1
1
{pkgs, lib, config, ...}:
2
2
3
3
+
with lib;
3
4
let
4
5
inherit (lib) mkOption mkIf optionals literalExample;
5
6
cfg = config.services.xserver.windowManager.xmonad;