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