Now the default way to define NixOS window manager modules is to use mkEnableOption to describe the module itself. In this commit, all files on nixos/modules/services/x11/window-managers are changed.
		
			
				
	
	
		
			26 lines
		
	
	
		
			504 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			504 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, ... }:
 | 
						|
 | 
						|
with lib;
 | 
						|
 | 
						|
let
 | 
						|
  cfg = config.services.xserver.windowManager.sawfish;
 | 
						|
in
 | 
						|
{
 | 
						|
  ###### interface
 | 
						|
  options = {
 | 
						|
    services.xserver.windowManager.sawfish.enable = mkEnableOption "sawfish";
 | 
						|
  };
 | 
						|
 | 
						|
  ###### implementation
 | 
						|
  config = mkIf cfg.enable {
 | 
						|
    services.xserver.windowManager.session = singleton {
 | 
						|
      name = "sawfish";
 | 
						|
      start = ''
 | 
						|
        ${pkgs.sawfish}/bin/sawfish &
 | 
						|
        waitPID=$!
 | 
						|
      '';
 | 
						|
    };
 | 
						|
    environment.systemPackages = [ pkgs.sawfish ];
 | 
						|
  };
 | 
						|
}
 |