python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / services / x11 / window-managers / ratpoison.nix
blob1de0fad3e54d85b2589076ecbc1fe0d21393b941
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 (lib.mdDoc "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   };