fix: don't add local cache to builder
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-05-29 21:13:27 -04:00
parent e692c2eee0
commit 343bf104d0

View file

@ -1,8 +1,11 @@
{
config,
lib,
pkgs,
...
}: {
}: let
inherit (lib) optionals;
in {
environment.systemPackages = [
(pkgs.writeShellApplication {
name = "rebuild-no-cache";
@ -15,7 +18,8 @@
nix = {
settings = {
substituters = [
substituters =
[
"https://hyprland.cachix.org"
"https://nix-gaming.cachix.org"
# Nixpkgs-Wayland
@ -28,6 +32,8 @@
"https://viperml.cachix.org"
# Caddy
"https://caddycf.cachix.org"
]
++ optionals (!config.services.nix-serve.enable) [
# Personal config cache
"https://cache.nelim.org"
];