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 {
|
||||
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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue