{ config, pkgs, ... }: let inherit (config.vars) mainUser; inherit (config.sops) secrets; nix-fast-buildPkg = pkgs.writeShellApplication { name = "nix-fast-build"; text = "nix run github:Mic92/nix-fast-build \"$@\""; }; in { services.nix-serve = { enable = true; secretKeyFile = secrets.binary-cache-key.path; }; environment.systemPackages = [ nix-fast-buildPkg ]; # Populate cache systemd = { services.buildAll = { serviceConfig = { Type = "oneshot"; User = mainUser; Group = config.users.users.${mainUser}.group; }; path = with pkgs; [ git nix nix-fast-buildPkg openssh ]; script = '' cd /tmp if [[ -d ./nix-clone ]]; then rm -r ./nix-clone fi git clone https://git.nelim.org/matt1432/nixos-configs.git nix-clone cd nix-clone nix-fast-build cd .. rm -r nix-clone ''; }; timers.buildAll = { wantedBy = ["timers.target"]; partOf = ["buildAll.service"]; timerConfig.OnCalendar = ["0:00:00"]; }; }; }