24 lines
442 B
Nix
24 lines
442 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
cfg = config.services.xserver.windowManager.cwm;
|
||
|
in
|
||
|
{
|
||
|
options = {
|
||
|
services.xserver.windowManager.cwm.enable = mkEnableOption "cwm";
|
||
|
};
|
||
|
config = mkIf cfg.enable {
|
||
|
services.xserver.windowManager.session = singleton
|
||
|
{ name = "cwm";
|
||
|
start =
|
||
|
''
|
||
|
cwm &
|
||
|
waitPID=$!
|
||
|
'';
|
||
|
};
|
||
|
environment.systemPackages = [ pkgs.cwm ];
|
||
|
};
|
||
|
}
|