Enable nix cache

Reviewed-by: Aleix Boné <abonerib@bsc.es>
Reviewed-by: Aleix Roca Nonell <aleix.rocanonell@bsc.es>
This commit is contained in:
Rodrigo Arias 2025-06-12 13:17:26 +02:00
parent 7aeb78426e
commit ad9a5bc906
2 changed files with 17 additions and 0 deletions

View File

@ -8,6 +8,7 @@
../module/ssh-hut-extern.nix
./monitoring.nix
./nginx.nix
./nix-serve.nix
];
# Select the this using the ID to avoid mismatches

16
m/tent/nix-serve.nix Normal file
View File

@ -0,0 +1,16 @@
{ config, ... }:
{
age.secrets.nixServe.file = ../../secrets/nix-serve.age;
services.nix-serve = {
enable = true;
# Only listen locally, as we serve it via ssh
bindAddress = "127.0.0.1";
port = 5000;
secretKeyFile = config.age.secrets.nixServe.path;
# Public key:
# jungle.bsc.es:pEc7MlAT0HEwLQYPtpkPLwRsGf80ZI26aj29zMw/HH0=
};
}