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