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