 29027fd1e1
			
		
	
	
		29027fd1e1
		
	
	
	
	
		
			
			Using pkgs.lib on the spine of module evaluation is problematic because the pkgs argument depends on the result of module evaluation. To prevent an infinite recursion, pkgs and some of the modules are evaluated twice, which is inefficient. Using ‘with lib’ prevents this problem.
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { config, lib, pkgs, ... }:
 | |
| 
 | |
| with lib;
 | |
| 
 | |
| let
 | |
| 
 | |
|   cfg = config.services.spamassassin;
 | |
| 
 | |
| in
 | |
| 
 | |
| {
 | |
| 
 | |
|   ###### interface
 | |
| 
 | |
|   options = {
 | |
| 
 | |
|     services.spamassassin = {
 | |
| 
 | |
|       enable = mkOption {
 | |
|         default = false;
 | |
|         description = "Whether to run the SpamAssassin daemon.";
 | |
|       };
 | |
| 
 | |
|       debug = mkOption {
 | |
|         default = false;
 | |
|         description = "Whether to run the SpamAssassin daemon in debug mode.";
 | |
|       };
 | |
| 
 | |
|     };
 | |
| 
 | |
|   };
 | |
| 
 | |
| 
 | |
|   ###### implementation
 | |
| 
 | |
|   config = mkIf cfg.enable {
 | |
| 
 | |
|     # Allow users to run 'spamc'.
 | |
|     environment.systemPackages = [ pkgs.spamassassin ];
 | |
| 
 | |
|     users.extraUsers = singleton {
 | |
|     name = "spamd";
 | |
|       description = "Spam Assassin Daemon";
 | |
|       uid = config.ids.uids.spamd;
 | |
|       group = "spamd";
 | |
|     };
 | |
| 
 | |
|     users.extraGroups = singleton {
 | |
|       name = "spamd";
 | |
|       gid = config.ids.gids.spamd;
 | |
|     };
 | |
| 
 | |
|     jobs.spamd = {
 | |
|       description = "Spam Assassin Server";
 | |
| 
 | |
|       wantedBy = [ "multi-user.target" ];
 | |
|       after = [ "network.target" ];
 | |
| 
 | |
|       exec = "${pkgs.spamassassin}/bin/spamd ${optionalString cfg.debug "-D"} --username=spamd --groupname=spamd --nouser-config --virtual-config-dir=/var/lib/spamassassin/user-%u --allow-tell --pidfile=/var/run/spamd.pid";
 | |
|     };
 | |
| 
 | |
|   };
 | |
| 
 | |
| }
 |