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