Set binary cache hint

This commit is contained in:
yuri 2023-07-31 15:38:08 +02:00
parent ea78e90875
commit e60e96c88b
3 changed files with 9 additions and 25 deletions

View file

@ -43,5 +43,14 @@
};
};
# Binary cache hint
nixConfig = {
extra-substituters = [
"https://nix-cache.nekover.se"
];
extra-trusted-public-keys = [
"nix-cache.nekover.se:f/VfGqC5lctLzOa6pLLDmEkihcip4WYpYShlW3rivLU="
];
};
};
}

View file

@ -1,15 +0,0 @@
{ ... }:
{
imports = [
./hardware-configuration.nix
./tor.nix
];
networking = {
hostName = "tor-relay";
firewall.enable = false;
};
system.stateVersion = "23.05";
}

View file

@ -1,10 +0,0 @@
{ ... }:
{
services.netox = {
enable = true;
settings = {
};
};
}