diff options
| -rw-r--r-- | modules/nix.nix | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/modules/nix.nix b/modules/nix.nix index 4d8109e..a98ec18 100644 --- a/modules/nix.nix +++ b/modules/nix.nix @@ -1,8 +1,12 @@ { me, lib, self, ... }: let - imNotBismuth = (me != "bismuth"); - + # NOTE: disable te bismuth cache for now, + # when bismuth is offline it still hangs, + # maybe use corsac and let bismuth write to it? + #useBismuthCache = (me != "bismuth"); + useBismuthCache = false; + # nixos by default likes to place the default cache # at the end, but bismuth is often offline, and the # default cache should be preferred if it has the @@ -26,6 +30,6 @@ in settings = { experimental-features = [ "flakes" "nix-command" ]; - } // lib.optionalAttrs imNotBismuth bismuthCacheSettings; # use bismuth cache + } // lib.optionalAttrs useBismuthCache bismuthCacheSettings; # use bismuth cache }; } |
