vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / services / x11 / window-managers / pekwm.nix
blob850335ce7ddfa1e9bc1dc76248a29bb37a7839f7
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
6   cfg = config.services.xserver.windowManager.pekwm;
7 in
9   ###### interface
10   options = {
11     services.xserver.windowManager.pekwm.enable = mkEnableOption "pekwm";
12   };
14   ###### implementation
15   config = mkIf cfg.enable {
16     services.xserver.windowManager.session = singleton {
17       name = "pekwm";
18       start = ''
19         ${pkgs.pekwm}/bin/pekwm &
20         waitPID=$!
21       '';
22     };
23     environment.systemPackages = [ pkgs.pekwm ];
24   };