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
###### interface
10
options = {
11
services.xserver.windowManager.fluxbox.enable = mkEnableOption "fluxbox";
0
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
0
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";
0
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
0
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
0
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;