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