Add basic binary cache stuff

This commit is contained in:
Malte Tammena 2021-11-05 18:36:18 +01:00
parent efee26eb02
commit 4b7f6f1d2c
2 changed files with 9 additions and 0 deletions

View file

@ -198,6 +198,7 @@
self.nixosModules.basics
./system/elysia-clarki.nix
./system/elysia-clarki-hardware.nix
./system/modules/binary-cache.nix
({ pkgs, ... }: {
# Override kernel version for zfs

View file

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
services.nix-serve = {
enable = true;
secretKeyFile = "/var/cache-priv-key.pem";
};
}