summary refs log blame commit diff
path: root/nixos/modules/services/x11/window-managers/dwm.nix
blob: 7777913ce1e623103950ec08b76c1b9b392a07bb (plain) (tree)


























                                                                     
                 








                                              
{ config, lib, pkgs, ... }:

with lib;

let

  cfg = config.services.xserver.windowManager.dwm;

in

{

  ###### interface

  options = {
    services.xserver.windowManager.dwm.enable = mkEnableOption "dwm";
  };


  ###### implementation

  config = mkIf cfg.enable {

    services.xserver.windowManager.session = singleton
      { name = "dwm";
        start =
          ''
            dwm &
            waitPID=$!
          '';
      };

    environment.systemPackages = [ pkgs.dwm ];

  };

}