modules: services: add nix-serve

This commit is contained in:
Bruno BELANYI 2023-04-19 21:23:01 +01:00
parent 872f045740
commit 455a4e5431
2 changed files with 58 additions and 0 deletions

View File

@ -20,6 +20,7 @@
./navidrome
./nextcloud
./nginx
./nix-serve
./paperless
./pirate
./podgrab

View File

@ -0,0 +1,57 @@
# Binary cache through nix-serve
{ config, lib, pkgs, ... }:
let
cfg = config.my.services.nix-serve;
in
{
options.my.services.nix-serve = with lib; {
enable = mkEnableOption "nix-serve binary cache";
port = mkOption {
type = types.port;
default = 5000;
example = 8080;
description = "Internal port for serving cache";
};
secretKeyFile = mkOption {
type = types.str;
example = "/run/secrets/nix-serve";
description = "Secret signing key for the cache";
};
priority = mkOption {
type = types.int;
default = 50;
example = 30;
description = ''
Which priority to assign to this cache. Lower number is higher priority.
The official nixpkgs hydra cache is priority 40.
'';
};
};
config = lib.mkIf cfg.enable {
services.nix-serve = {
enable = true;
bindAddress = "127.0.0.1";
inherit (cfg)
port
secretKeyFile
;
package = pkgs.nix-serve-ng;
extraParams = "--priority=${toString cfg.priority}";
};
my.services.nginx.virtualHosts = [
{
subdomain = "cache";
inherit (cfg) port;
}
];
};
}