nixos: services: nix-cache: fix renamed option
All checks were successful
ci/woodpecker/push/check Pipeline was successful

This commit is contained in:
Bruno BELANYI 2026-03-16 14:27:02 +00:00
parent 36c34eb12a
commit 38dc0488a9

View file

@ -33,14 +33,16 @@ in
config = lib.mkIf cfg.enable {
services.harmonia = {
enable = true;
cache = {
enable = true;
settings = {
bind = "127.0.0.1:${toString cfg.port}";
inherit (cfg) priority;
settings = {
bind = "127.0.0.1:${toString cfg.port}";
inherit (cfg) priority;
};
signKeyPaths = [ cfg.secretKeyFile ];
};
signKeyPaths = [ cfg.secretKeyFile ];
};
my.services.nginx.virtualHosts = {