From 142c2ef3783f612a2b47de05ec4837c673edb411 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Thu, 19 Oct 2023 00:12:55 +0800 Subject: [PATCH] hosts/bootstrap: set system version and disable cache splitting The user modules are apparently not compatible with the default way of building the documentation so we'll have to. This should fix being able to unable to be built due to the missing files which most likely came from the cache. --- hosts/bootstrap/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/bootstrap/default.nix b/hosts/bootstrap/default.nix index 55530f5b..4c05c174 100644 --- a/hosts/bootstrap/default.nix +++ b/hosts/bootstrap/default.nix @@ -23,4 +23,7 @@ enable = true; allowSFTP = true; }; + + documentation.nixos.options.splitBuild = false; + system.stateVersion = "23.11"; }