nixos-configs/devices/servivi/modules/binary-cache.nix
matt1432 f4c78791ea
All checks were successful
Discord / discord commits (push) Has been skipped
feat: add binary cache at apartment
2024-12-11 12:29:24 -05:00

87 lines
1.8 KiB
Nix

{
config,
mainUser,
pkgs,
...
}: let
inherit (builtins) attrValues;
inherit (config.sops) secrets;
nixFastBuild = pkgs.writeShellApplication {
name = "nixFastBuild";
runtimeInputs = attrValues {
inherit
(pkgs)
gnugrep
nix-fast-build
nix-output-monitor
;
};
text = ''
cd "$FLAKE/results" || return
# Home-assistant sometimes fails some tests when built with everything else
nom build --no-link \
..#nixosConfigurations.homie.config.services.home-assistant.package
nix-fast-build -f ..#nixFastChecks.${pkgs.system}.all "$@"
'';
};
in {
services.nix-serve = {
enable = true;
secretKeyFile = secrets.binary-cache-key.path;
};
environment.systemPackages = [pkgs.nix-fast-build nixFastBuild];
# Populate cache
systemd = {
services.buildAll = {
serviceConfig = {
Type = "oneshot";
User = mainUser;
Group = config.users.users.${mainUser}.group;
};
path = attrValues {
inherit
(pkgs)
bash
git
nix-fast-build
openssh
;
inherit (config.nix) package;
};
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 -f .#nixFastChecks.${pkgs.system}.all
cd ..
rm -r nix-clone
# Just to cache mozilla-addons-to-nix
nix run sourcehut:~rycee/mozilla-addons-to-nix -- --help
'';
};
timers.buildAll = {
wantedBy = ["timers.target"];
partOf = ["buildAll.service"];
timerConfig.OnCalendar = ["0:00:00"];
};
};
}