This CL can be used to compare the style of nixpkgs-fmt against other formatters (nixpkgs, alejandra). Change-Id: I87c6abff6bcb546b02ead15ad0405f81e01b6d9e Reviewed-on: https://cl.tvl.fyi/c/depot/+/4397 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org> Reviewed-by: lukegb <lukegb@tvl.fyi> Reviewed-by: wpcarro <wpcarro@gmail.com> Reviewed-by: Profpatsch <mail@profpatsch.de> Reviewed-by: kanepyork <rikingcoding@gmail.com> Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: cynthia <cynthia@tvl.fyi> Reviewed-by: edef <edef@edef.eu> Reviewed-by: eta <tvl@eta.st> Reviewed-by: grfn <grfn@gws.fyi>
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
# NixOS module to run Nixery, currently with local-storage as the
 | 
						|
# backend for storing/serving image layers.
 | 
						|
{ depot, config, lib, pkgs, ... }:
 | 
						|
 | 
						|
let
 | 
						|
  cfg = config.services.depot.nixery;
 | 
						|
  description = "Nixery - container images on-demand";
 | 
						|
  storagePath = "/var/lib/nixery/${pkgs.nixpkgsCommits.unstable}";
 | 
						|
in
 | 
						|
{
 | 
						|
  options.services.depot.nixery = {
 | 
						|
    enable = lib.mkEnableOption description;
 | 
						|
 | 
						|
    port = lib.mkOption {
 | 
						|
      type = lib.types.int;
 | 
						|
      default = 45243; # "image"
 | 
						|
      description = "Port on which Nixery should listen";
 | 
						|
    };
 | 
						|
  };
 | 
						|
 | 
						|
  config = lib.mkIf cfg.enable {
 | 
						|
    systemd.services.nixery = {
 | 
						|
      inherit description;
 | 
						|
      wantedBy = [ "multi-user.target" ];
 | 
						|
 | 
						|
      serviceConfig = {
 | 
						|
        DynamicUser = true;
 | 
						|
        StateDirectory = "nixery";
 | 
						|
        Restart = "always";
 | 
						|
        ExecStartPre = "${pkgs.coreutils}/bin/mkdir -p ${storagePath}";
 | 
						|
        ExecStart = "${depot.third_party.nixery.nixery-bin}/bin/nixery";
 | 
						|
      };
 | 
						|
 | 
						|
      environment = {
 | 
						|
        PORT = toString cfg.port;
 | 
						|
        NIXERY_PKGS_PATH = pkgs.path;
 | 
						|
        NIXERY_STORAGE_BACKEND = "filesystem";
 | 
						|
        NIX_TIMEOUT = "60"; # seconds
 | 
						|
        STORAGE_PATH = storagePath;
 | 
						|
      };
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |