This reverts commit ab6c8643d451b04884e938cd7ed2186663d32a96. Issue https://github.com/NixOS/nix/issues/609 has been resolved, the new Nix version is available after 86eaeb4c0a31e623c01f0d39fd5b3e64ce5f80b5, and using nix-collect-garbage has the advantage that the '-d' flag is available, which nix-store doesn't have.
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, ... }:
 | 
						|
 | 
						|
with lib;
 | 
						|
 | 
						|
let
 | 
						|
  cfg = config.nix.gc;
 | 
						|
in
 | 
						|
 | 
						|
{
 | 
						|
 | 
						|
  ###### interface
 | 
						|
 | 
						|
  options = {
 | 
						|
 | 
						|
    nix.gc = {
 | 
						|
 | 
						|
      automatic = mkOption {
 | 
						|
        default = false;
 | 
						|
        type = types.bool;
 | 
						|
        description = "Automatically run the garbage collector at a specific time.";
 | 
						|
      };
 | 
						|
 | 
						|
      dates = mkOption {
 | 
						|
        default = "03:15";
 | 
						|
        type = types.str;
 | 
						|
        description = ''
 | 
						|
          Specification (in the format described by
 | 
						|
          <citerefentry><refentrytitle>systemd.time</refentrytitle>
 | 
						|
          <manvolnum>5</manvolnum></citerefentry>) of the time at
 | 
						|
          which the garbage collector will run.
 | 
						|
        '';
 | 
						|
      };
 | 
						|
 | 
						|
      options = mkOption {
 | 
						|
        default = "";
 | 
						|
        example = "--max-freed $((64 * 1024**3))";
 | 
						|
        type = types.str;
 | 
						|
        description = ''
 | 
						|
          Options given to <filename>nix-collect-garbage</filename> when the
 | 
						|
          garbage collector is run automatically.
 | 
						|
        '';
 | 
						|
      };
 | 
						|
 | 
						|
    };
 | 
						|
 | 
						|
  };
 | 
						|
 | 
						|
 | 
						|
  ###### implementation
 | 
						|
 | 
						|
  config = {
 | 
						|
 | 
						|
    systemd.services.nix-gc =
 | 
						|
      { description = "Nix Garbage Collector";
 | 
						|
        script = "exec ${config.nix.package}/bin/nix-collect-garbage ${cfg.options}";
 | 
						|
        startAt = optionalString cfg.automatic cfg.dates;
 | 
						|
      };
 | 
						|
 | 
						|
  };
 | 
						|
 | 
						|
}
 |