38 lines
		
	
	
		
			513 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			513 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ 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 =
 | 
						|
          ''
 | 
						|
            ${pkgs.dwm}/bin/dwm &
 | 
						|
            waitPID=$!
 | 
						|
          '';
 | 
						|
      };
 | 
						|
 | 
						|
    environment.systemPackages = [ pkgs.dwm ];
 | 
						|
 | 
						|
  };
 | 
						|
 | 
						|
}
 |