nixos: services: nix-cache: fix renamed option
All checks were successful
ci/woodpecker/push/check Pipeline was successful
All checks were successful
ci/woodpecker/push/check Pipeline was successful
This commit is contained in:
parent
36c34eb12a
commit
38dc0488a9
1 changed files with 8 additions and 6 deletions
|
|
@ -33,14 +33,16 @@ in
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
services.harmonia = {
|
services.harmonia = {
|
||||||
enable = true;
|
cache = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
bind = "127.0.0.1:${toString cfg.port}";
|
bind = "127.0.0.1:${toString cfg.port}";
|
||||||
inherit (cfg) priority;
|
inherit (cfg) priority;
|
||||||
|
};
|
||||||
|
|
||||||
|
signKeyPaths = [ cfg.secretKeyFile ];
|
||||||
};
|
};
|
||||||
|
|
||||||
signKeyPaths = [ cfg.secretKeyFile ];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
my.services.nginx.virtualHosts = {
|
my.services.nginx.virtualHosts = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue