2021-08-06 13:53:41 +02:00
|
|
|
# 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}";
|
2022-05-13 18:25:59 +02:00
|
|
|
ExecStart = "${depot.tools.nixery.nixery}/bin/server";
|
2021-08-06 13:53:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
environment = {
|
|
|
|
PORT = toString cfg.port;
|
2021-12-02 07:16:52 +01:00
|
|
|
NIXERY_PKGS_PATH = pkgs.path;
|
2021-08-06 13:53:41 +02:00
|
|
|
NIXERY_STORAGE_BACKEND = "filesystem";
|
|
|
|
NIX_TIMEOUT = "60"; # seconds
|
|
|
|
STORAGE_PATH = storagePath;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|